You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can the journal mode that the current SQLite database uses (DELETE which is default) be change to WAL journaling. This will increase the performance in entering information into the database dramatically. In one of the modules I ran with the default journaling mode, the module ran in 1451 seconds. When I ran the same module in WAL mode it ran in 40 seconds which is 36 times faster. When the SQLite database is created all that would need to be run is the following statement "PRAGMA journal_mode=wal;".