I'm using VS 2019 16.9.4 and I'm writing a database program using SQLite. I'm not sure how concurrent writing and reading to and from database is handled by default. I have read the SQLite WAL modes notes, but I still don't quite understand.
By default is journaling enabled?
Is this how you enable WAL2?
Public connectionString As String = String.Format("Data Source = {0}; PRAGMA journal_mode=WAL2", dtBasePath)
Thanks for the help.
By default is journaling enabled?
Is this how you enable WAL2?
Public connectionString As String = String.Format("Data Source = {0}; PRAGMA journal_mode=WAL2", dtBasePath)
Thanks for the help.