-- -- Optional TRIGGER commands go here -- -- -- -- -- See 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;