diff options
author | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-29 14:01:33 +0200 |
---|---|---|
committer | Gert-Jan Timmer <gjr.timmer@gmail.com> | 2018-05-29 14:01:33 +0200 |
commit | 24cbd402e45f54cc20dc47d81c9002a965679f2b (patch) | |
tree | b587adf4980179de250e20c662f3bcfc71c437e4 /README.md | |
parent | ADD: PRAGMA synchronous (diff) | |
download | golite-24cbd402e45f54cc20dc47d81c9002a965679f2b.tar.gz golite-24cbd402e45f54cc20dc47d81c9002a965679f2b.tar.xz |
ADD: PRAGMA writable_schema
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |