17 lines
387 B
SQL
17 lines
387 B
SQL
--
|
|
-- Optional TRIGGER commands go here
|
|
--
|
|
--
|
|
--
|
|
-- -- See <http://sqlite.org/pragma.html> for more on this mode.
|
|
--
|
|
-- Set SQLite's journal mode.
|
|
--
|
|
-- journal_mode=memory - set to voletile RAM to avoid using RAMdisc for temp files
|
|
PRAGMA journal_mode=memory;
|
|
--
|
|
-- Set SQLite's vacuum mode.
|
|
--
|
|
-- auto_vacuum=none - to avoid using RAMdisc for temp files
|
|
PRAGMA auto_vacuum=full;
|