Hi,
I created a new database on my PDA with CF3.5 and everythin works fine as long as i use the databasefile with .net on my PDA.
but when i copy the databasefile to my windows pc and try to oben the databasefile with the current version of sqlite3.exe .... I get the following message:
Error: file is encrypted or is not a database
I don encrypt the database, so I can eleminate one of this points.
What can I do to use the same databasefiles on other hosts ?
Regards,
Jonny
ShowMsg("...creating new database")
SQLite.SQLiteConnection.CreateFile(dbfilename)
con = New SQLite.SQLiteConnection("Data Source=" & dbfilename)ShowMsg("SQLite-Version=" & SQLite.SQLiteConnection.SQLiteVersion)
con.Open()
...