Description
SQLite is so easy to get started with, it might feel like it’s configuration free, but that’s not exactly true… It’s mostly configuration free, but there are a few configuration options you should be aware of as an SQLite developer, and in this video we discuss one of the most important options in SQLite.
My Notes
SQLite requires ALMOST no configuration
Configuring the journal mode
PRAGMA journal_mode = WAL
- 01:04: It is worth configuring the journal mode.
- There are two main options:
- WAL
- Rollback Journal in SQLite (the default)
- There are two main options: