Package com.nuodb.jdbc
Interface TransactionIsolation
-
public interface TransactionIsolationNuoDB Transaction Isolation modes in addition to the modes defined inConnection- See Also:
Connection
-
-
Field Summary
Fields Modifier and Type Field Description static intTRANSACTION_CONSISTENT_READOur native mode; Repeatable reads, no phantoms, but some write anomalies that would not occur if the transactions were run in a single series.static intTRANSACTION_WRITE_COMMITTEDDirty reads are prevented; non-repeatable reads happen after writes.
-
-
-
Field Detail
-
TRANSACTION_WRITE_COMMITTED
static final int TRANSACTION_WRITE_COMMITTED
Dirty reads are prevented; non-repeatable reads happen after writes. Phantom reads can occur.- See Also:
- Constant Field Values
-
TRANSACTION_CONSISTENT_READ
static final int TRANSACTION_CONSISTENT_READ
Our native mode; Repeatable reads, no phantoms, but some write anomalies that would not occur if the transactions were run in a single series.- See Also:
- Constant Field Values
-
-