diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-29 13:55:31 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-29 13:55:31 +0200 |
commit | cb041405c6e3989fea4ead50b90a4bc7e75d5ab5 (patch) | |
tree | aeda2e7ed8cf0d8152dd82b84138146458bd4bc8 /README.md | |
parent | Add: Copyright for additional Features (diff) | |
download | golite-cb041405c6e3989fea4ead50b90a4bc7e75d5ab5.tar.gz golite-cb041405c6e3989fea4ead50b90a4bc7e75d5ab5.tar.xz |
ADD: PRAGMA synchronous
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -89,6 +89,7 @@ Boolean values can be one of: | Recursive Triggers | `_recursive_triggers` \| `_rt` | `boolean` | For more information see [PRAGMA recursive_triggers](https://www.sqlite.org/pragma.html#pragma_recursive_triggers) | | Secure Delete | `_secure_delete` | `boolean` \| `FAST` | For more information see [PRAGMA secure_delete](https://www.sqlite.org/pragma.html#pragma_secure_delete) | | 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) | +| Synchronous | `_synchronous` \| `_sync` | <ul><li>0 \| OFF</li><li>1 \| NORMAL</li><li>2 \| FULL</li><li>3 \| EXTRA</li></ul> | For more information see [PRAGMA synchronous](https://www.sqlite.org/pragma.html#pragma_synchronous) | | Time Zone Location | `_loc` | auto | Specify location of time format. | | Transaction Lock | `_txlock` | <ul><li>immediate</li><li>deferred</li><li>exclusive</li></ul> | Specify locking behavior for transactions. | |