Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upSupport `BEGIN EXCLUSIVE` or `BEGIN IMMEDIATE` for Sqlite. #1356
Comments
sgrif
changed the title from
No support for `BEGIN EXCLUSIVE` or `BEGIN IMMEDIATE` for Sqlite.
to
Support `BEGIN EXCLUSIVE` or `BEGIN IMMEDIATE` for Sqlite.
Dec 6, 2017
sgrif
added
the
hole in api
label
Dec 6, 2017
This comment has been minimized.
|
Ideally we'd handle this and #408 at the same time. |
added a commit
that referenced
this issue
Jan 7, 2018
sgrif
referenced this issue
Jan 7, 2018
Merged
Support specifying details about a PG transaction #1462
added a commit
that referenced
this issue
Jan 7, 2018
added a commit
that referenced
this issue
Jan 7, 2018
added a commit
that referenced
this issue
Jan 17, 2018
added a commit
that referenced
this issue
Jan 18, 2018
added a commit
that referenced
this issue
Jan 24, 2018
sgrif
referenced this issue
Jan 24, 2018
Merged
Add support for `BEGIN IMMEDIATE` and `BEGIN EXCLUSIVE` on SQLite #1511
notryanb
closed this
in
#1511
Jan 26, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Lymia commentedDec 6, 2017
Sqlite uses relatively weak locking by default when just
BEGINis used to start a transaction. Normally, you would useBEGIN EXCLUSIVEorBEGIN IMMEDIATErather thanBEGINto do such a transaction with stronger locking, however, Diesel has no support for using these.