SQLite: Add busy_timeout pragma to default options

This commit is contained in:
Tim Wojtulewicz 2025-05-13 10:37:04 -07:00
parent e91421a8de
commit 26cc6d4e7b
3 changed files with 3 additions and 3 deletions

View file

@ -24,6 +24,7 @@ export {
## database. These must be pairs that can be passed to the ``pragma``
## command in sqlite.
tuning_params: table[string] of string &default=table(
["busy_timeout"] = "5000",
["journal_mode"] = "WAL",
["synchronous"] = "normal",
["temp_store"] = "memory"