Merge pull request #220 from andersmurphy/patch-1
Fix typo :repeatedable-read -> :repeatable-read
This commit is contained in:
commit
65b26a0fa4
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ In addition to the above, `next.jdbc/execute-batch!` (which may create a `Prepar
|
||||||
|
|
||||||
The `transact` function and `with-transaction` macro accept the following options:
|
The `transact` function and `with-transaction` macro accept the following options:
|
||||||
|
|
||||||
* `:isolation` -- a keyword that identifies the isolation to be used for this transaction: `:none`, `:read-committed`, `:read-uncommitted`, `:repeatedable-read`, or `:serializable`; these represent increasingly strict levels of transaction isolation and may not all be available depending on the database and/or JDBC driver being used,
|
* `:isolation` -- a keyword that identifies the isolation to be used for this transaction: `:none`, `:read-committed`, `:read-uncommitted`, `:repeatable-read`, or `:serializable`; these represent increasingly strict levels of transaction isolation and may not all be available depending on the database and/or JDBC driver being used,
|
||||||
* `:read-only` -- a `Boolean` that indicates whether the transaction should be read-only or not (the default),
|
* `:read-only` -- a `Boolean` that indicates whether the transaction should be read-only or not (the default),
|
||||||
* `:rollback-only` -- a `Boolean` that indicates whether the transaction should commit on success (the default) or rollback.
|
* `:rollback-only` -- a `Boolean` that indicates whether the transaction should commit on success (the default) or rollback.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue