I am using the System.data.sqlite.dll in my vb.net program. And for the life of me I can't figure out the code to activate WAL mode.
Do I activate this command right after I Create the DB or with every new SQLiteConnection.
And if so what code would need to be used right now im using something like:
cnn As New SQLiteConnection(String.Format("Data Source={0}\{1};PRAGMA jounal_mode=WAL;", Application.StartupPath, DBName))
is this how that PRAGMA command should be used?