I did write some apps in the past that used access en sqlserver databases. These databases come with wizards however to help you create a connection to it.
Now, I want to add a new db connection in the Server explorer of visual studio 2008 to SQLite. I referenced the System.Data.SQLite
assembly from phxsoftware. I am able to select the SQLite Database File (.NET Framework Data Provider for SQLite) as a Datasource. Then I tried to add as the connection string: Data Source=g:\testsqlite.s3db; Version=3
(a database file I constructed using SQLite administrator).
When I hit the Test Connection button all seems to be fine, but when I hit OK, visual studio greets me with a message box that an unexpected error has occurred in the .Net Framework Dataprovider for Sqlite.
What am I doing wrong?