I used
http://sqliteadmin.orbmu2k.de/
to create my sqlite db file. I created it as a sqlite db version 3 file.
When I go to open the connection
Dim Connection As New SQLite.SQLiteConnection(DATABASE_FILE_LOCATION)
Connection.Open()
I am getting this exception on the Open() call
"File opened that is not a database file file is encrypted or is not a database" (System.Data.SQLite.SQLiteException) Exception Message = "File opened that is not a database file\r\nfile is encrypted or is not a database", Exception Type = "System.Data.SQLite.SQLiteException"
What is the issue here? Here is my file file location constant:
Private Const DATABASE_FILE_LOCATION As String = "Data Source=C:\Users\Scott\Desktop\Projects\Funds\Program\BudgetManager\Main.s3db;Version=3;"