I am running SQLite3 version of sqlite-3.6.12, and I have successfully ported it to my OS. The problem that I see is that when I execute the command "PRAGMA journal_mode = OFF" it returns "OFF", but I still see * .db log files being created. It is very important that these files are not created for my project. When I look through the sqlite3PagerJournalMode code it returns PAGER_JOURNALMODE_OFF, so I wonder if setting journal_mode = OFF should still create these files or if there is something else that I am missing. Please, help
I also tried PRAGMA main.journal_mode = OFF and PRAGMA journal_mode = MEMORY. But the log file is created as such !!!!
Anish
source
share