Hello everyone,
I am using a SQLite database in a WPF windows application. After installing the windows application the database inside this folder like this.
static SQLiteConnection dbConnection = new SQLiteConnection(@"Data Source=C:\Program Files (x86)\hedronix\qScan\test.s3db;");
But when I am trying to access the database from this location of the windows application showing this error.
"attempt to write a readonly database\r\nattempt to write a readonly database”
How can I solve that?
In this situation, how can I set default connection string for accessing SQLite database after install this application on any local computer?

Software ExibitationPosted Apr 25, 2021, 3:59 PM
Bikesh SrivastavaPosted Nov 6, 2016, 1:33 PM
Amit GuptaPosted Nov 6, 2016, 1:09 PM
Manas MohapatraPosted Nov 6, 2016, 12:22 PM
Make sure that your application that is installed has add/write/create/delete access to the folder where the sqlite database resides.