Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

One can explicitly change out of WAL mode using a pragma such as this:

 

Code Block
PRAGMA journal_mode=DELETE;

...

 
 

Deliberately changing out of WAL mode changes the database file format version numbers back to 1 so that older versions of SQLite can once again  access the database file.

...