Interface TransactionIsolation


  • public interface TransactionIsolation
    NuoDB Transaction Isolation modes in addition to the modes defined in Connection
    See Also:
    Connection
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static 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.
      static int TRANSACTION_WRITE_COMMITTED
      Dirty 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