I am having a SQLite database database.sqlite. I have used the Build Action = Content and Copy to Output Directory, if newer options.
I am using the SQLite DB in a Windows Phone 8 Application. I have used SQLite For WP8 extension, SQLite-NET and SQLite-NET-WP8 projects in GitHub.
I am using the following statements to connect:
var conn = new SQLiteConnection("Data Source=database.sqlite;Version=3") to connect to the database.
I am getting a cryptic error - No such table found.
It looks like it is a connectivity issue. Any pointers on how to set up the connection to a SQLite database in Windows phone 8 App.