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
* Conform keys to match PRAGMA
* UPD: README
* Fix error of _auto_vacuum
* Fix error of _case_sensitive_like
* Fix error of _locking_mode
* Fix error of _secure_delete
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,15 +74,15 @@ Boolean values can be one of:
74
74
75
75
| Name | Key | Value(s) | Description |
76
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)|
77
+
| Auto Vacuum |`_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
78
| Busy Timeout |`_busy_timeout`\|`_timeout`|`int`| Specify value for sqlite3_busy_timeout. For more information see [PRAGMA busy_timeout](https://www.sqlite.org/pragma.html#pragma_busy_timeout)|
79
-
| Case Sensitive LIKE |`_cslike`|`boolean`| For more information see [PRAGMA case_sensitive_like](https://www.sqlite.org/pragma.html#pragma_case_sensitive_like)|
79
+
| Case Sensitive LIKE |`_case_sensitive_like`\|`_cslike`|`boolean`| For more information see [PRAGMA case_sensitive_like](https://www.sqlite.org/pragma.html#pragma_case_sensitive_like)|
80
80
| Defer Foreign Keys |`_defer_foreign_keys`\|`_defer_fk`|`boolean`| For more information see [PRAGMA defer_foreign_keys](https://www.sqlite.org/pragma.html#pragma_defer_foreign_keys)|
81
81
| Foreign Keys |`_foreign_keys`\|`_fk`|`boolean`| For more information see [PRAGMA foreign_keys](https://www.sqlite.org/pragma.html#pragma_foreign_keys)|
82
82
| Ignore CHECK Constraints |`_ignore_check_constraints`|`boolean`| For more information see [PRAGMA ignore_check_constraints](https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints)|
83
83
| Immutable |`immutable`|`boolean`| For more information see [Immutable](https://www.sqlite.org/c3ref/open.html)|
84
-
| Journal Mode |`_journal`| <ul><li>DELETE</li><li>TRUNCATE</li><li>PERSIST</li><li>MEMORY</li><li>WAL</li><li>OFF</li></ul> | For more information see [PRAGMA journal_mode](https://www.sqlite.org/pragma.html#pragma_journal_mode)|
85
-
| Locking Mode |`_locking`| <ul><li>NORMAL</li><li>EXCLUSIVE</li></ul> | For more information see [PRAGMA locking_mode](https://www.sqlite.org/pragma.html#pragma_locking_mode)|
84
+
| Journal Mode |`_journal_mode`\|`_journal`| <ul><li>DELETE</li><li>TRUNCATE</li><li>PERSIST</li><li>MEMORY</li><li>WAL</li><li>OFF</li></ul> | For more information see [PRAGMA journal_mode](https://www.sqlite.org/pragma.html#pragma_journal_mode)|
85
+
| Locking Mode |`_locking_mode`\|`_locking`| <ul><li>NORMAL</li><li>EXCLUSIVE</li></ul> | For more information see [PRAGMA locking_mode](https://www.sqlite.org/pragma.html#pragma_locking_mode)|
86
86
| Mode |`mode`| <ul><li>ro</li><li>rw</li><li>rwc</li><li>memory</li></ul> | Access Mode of the database. For more information see [SQLite Open](https://www.sqlite.org/c3ref/open.html)|
0 commit comments