This is an example of a connection string from my project (App.config):
<connectionStrings> <add name="SQLiteDb" providerName="System.Data.SQLite" connectionString="Data Source=data.sqlite;Version=3;Pooling=True;Synchronous=Off;journal mode=Memory"/> </connectionStrings>
Instead of journal mode=Memory you can specify journal mode=WAL .
If you do not specify the log mode in the connection string, you can switch it manually by executing the PRAGMA jounal_mode=WAL query to the database.
source share