diff --git a/resources/lib/db.py b/resources/lib/db.py index 30f91315..c7e0e0cb 100644 --- a/resources/lib/db.py +++ b/resources/lib/db.py @@ -58,9 +58,10 @@ def _initial_db_connection_setup(conn, wal_mode): before. Also start a transaction """ if wal_mode: - conn.execute('PRAGMA journal_mode=WAL;') - conn.execute('PRAGMA cache_size = -8000;') - conn.execute('PRAGMA synchronous=NORMAL;') + pass + # conn.execute('PRAGMA journal_mode=WAL;') + # conn.execute('PRAGMA cache_size = -8000;') + # conn.execute('PRAGMA synchronous=NORMAL;') conn.execute('BEGIN')