Does transaction support isolation levels?
# exposed
r
Does transaction support isolation levels?
t
Globally across all transactions or on a per-transaction basis?
You can set isolation level in the data source. As for on a per-transaction basis, I don't think so (could be wrong).
r
per transaction
transactionIsolation is the parameter you want to set.
t
@rrader, per transaction level (https://github.com/JetBrains/Exposed/wiki/Transactions#advanced-parameters-and-usage), also as @tKw mentioned it's possible to change isolation level globally.
116 Views