aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGert-Jan Timmer <gjr.timmer@gmail.com>2018-05-29 13:55:31 +0200
committerGert-Jan Timmer <gjr.timmer@gmail.com>2018-05-29 13:55:31 +0200
commitcb041405c6e3989fea4ead50b90a4bc7e75d5ab5 (patch)
treeaeda2e7ed8cf0d8152dd82b84138146458bd4bc8 /README.md
parentAdd: Copyright for additional Features (diff)
downloadgolite-cb041405c6e3989fea4ead50b90a4bc7e75d5ab5.tar.gz
golite-cb041405c6e3989fea4ead50b90a4bc7e75d5ab5.tar.xz
ADD: PRAGMA synchronous
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 82b43f8..6e6abe7 100644
--- a/README.md
+++ b/README.md
@@ -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. |