June 27, 2019 at 4:26 pm
#21248
Hi,
Per the SQLite docs on WAL mode, you need to set:
PRAGMA journal_mode=WAL;
PRAGMA looks to be a command you issue via SQL: https://www.sqlite.org/pragma.html
So try this:
- Connect to SQLLite in Omnis
- Issue PRAGMA journal_mode=WAL; as an execute in your database
Alex