Database
SQLite with WAL mode MUST be used for concurrent read access. An ORM MUST NOT be used — use direct SQL via the sqlite3 standard library module.
conn = sqlite3.connect(db_path)
conn.execute("PRAGMA journal_mode=WAL")
SQLite with WAL mode MUST be used for concurrent read access. An ORM MUST NOT be used — use direct SQL via the sqlite3 standard library module.
conn = sqlite3.connect(db_path)
conn.execute("PRAGMA journal_mode=WAL")
| Version | Date | Author | Summary |
|---|---|---|---|
| 1.0.0 | 2026-03-27 | Mike Fullerton | Initial creation |