No, is not the same way... on the desktop, y use the sqlite3.exe tool,
inserting data as: "Insert into aTable values(...);". But in the CE
device I use something like:
Dim consulta As New SQLiteCommand(instruccionSQL, conexion)
conexion.Open()
consulta.ExecuteNonQuery()
conexion.Close()
consulta.Dispose()
Where instruccionSQL is a SQL instruction, like "Insert into aTable values(...);".
I don't kow how to use, if possible, sqlite3.exe in a CE device...
Abulafia