Hi.
I have this error message as well. Now here's the thing:
It never happens when debugging or at any other filesystem location on machines with the development environment (Visual C# Express 2005). It however fails to open the database on any (tested) system without Visual. I've double checked the db-path in the connection string, it's always correct...
Here's the relevant code (trivial, but just in case) :
private SQLiteConnection m_Conn = new SQLiteConnection("Data Source=" + Path.GetDirectoryName(Application.ExecutablePath) + "\\db\\default.db");
MessageBox.Show(m_Conn.ConnectionString);
m_Conn.Open();
Any Ideas?