aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGert-Jan Timmer <gjr.timmer@gmail.com>2018-05-29 14:01:33 +0200
committerGert-Jan Timmer <gjr.timmer@gmail.com>2018-05-29 14:01:33 +0200
commit24cbd402e45f54cc20dc47d81c9002a965679f2b (patch)
treeb587adf4980179de250e20c662f3bcfc71c437e4 /README.md
parentADD: PRAGMA synchronous (diff)
downloadgolite-24cbd402e45f54cc20dc47d81c9002a965679f2b.tar.gz
golite-24cbd402e45f54cc20dc47d81c9002a965679f2b.tar.xz
ADD: PRAGMA writable_schema
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 6e6abe7..1d7d7c9 100644
--- a/README.md
+++ b/README.md
@@ -92,6 +92,7 @@ Boolean values can be one of:
| 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. |
+| Writable Schema | `_writable_schema` | `Boolean` | When this pragma is on, the SQLITE_MASTER tables in which database can be changed using ordinary UPDATE, INSERT, and DELETE statements. Warning: misuse of this pragma can easily result in a corrupt database file. |
## DSN Examples