Hi,
I've been developing a small database application for my PDA (WM5) using VS2005 standard (specifically Visual Basic) and SQL Server Mobile.
However, upon reading about SQLite, and reading that most everything about it, for small databases, is smaller and faster on a handheld than SQL Mobile, I decided I'd try SQLite out.
I downloaded and installed the 1.0.38.0 version of the SQLite .MSI package from this site. I created a new VB project, created a new SQLite database, added a simple table to it (with a few sample rows of data), created a dataset in the application from the database, and then created a datagrid on the default form to simply display the contents of the table (a TableAdapter & BindingSource were automatically created).
All of that worked well. However, when I went to debug the program, VS downloaded it to my PDA along with the system.data.DQLite.dll library, tried to run it, and it exited with the error that it could not find the DB file to open. Even when I copied the database file to the installation directory, I got the same error.
I'm sure this is not a bug, but rather a user error. Could anyone point out to me what's going wrong and why the EXE can't find the DB file?
Thanks,
Phillip