Disable create database behaviour using SQLite.NET

Connection string

This SQLite.NET connection string can be used for connections to SQLite.

If the database file doesn't exist, the default behaviour is to create a new file. Use the following parameter to raise an error instead of creating a new database file.

Data Source=c:\mydb.db;Version=3;FailIfMissing=True;