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
Copy file name to clipboardExpand all lines: README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,15 +68,20 @@ Options can be given using the following format: `KEYWORD=VALUE` and multiple op
68
68
69
69
This library supports dsn options of SQLite itself and provides additional options.
70
70
71
+
Boolean values can be one of:
72
+
*`0``no``false``off`
73
+
*`1``yes``true``on`
74
+
71
75
| Name | Key | Value(s) | Description |
72
76
|------|-----|----------|-------------|
77
+
| Auto Vacuum |_vacuum | <ul><li>`0`\|`none`</li><li>`1`\|`full`</li><li>`2`\|`incremental`</li></ul> | For more information see [PRAGMA auto_vacuum](https://www.sqlite.org/pragma.html#pragma_auto_vacuum)|
78
+
| Busy Timeout |_busy_timeout |`int`| Specify value for sqlite3_busy_timeout. |
79
+
| Foreign Keys |_foreign_keys |`boolean`| Enable or disable enforcement of foreign keys. |
| Shared-Cache Mode | cache | <ul><li>shared</li><li>private</li></ul> | Set cache mode for more information see [sqlite.org](https://www.sqlite.org/sharedcache.html)|
74
83
| Time Zone Location |_loc | auto | Specify location of time format. |
75
-
| Busy Timeout |_busy_timeout |`int`| Specify value for sqlite3_busy_timeout. |
0 commit comments