Files
distant-horizons-sharded/cleanroom/src/main/resources/sqlScripts/0031-sqlite-useSqliteWalJournaling.sql
T
2026-03-11 09:20:32 +01:00

9 lines
223 B
SQL

-- these PRAGMA's will automatically commit, so we have to disable
-- DH's automatic transactions, otherwise the connection will throw an error
--No Transactions--
pragma journal_mode = WAL;
pragma synchronous = NORMAL;