Packages

case object Serializable extends TransactionIsolation with Product with Serializable

A transaction isolation level indicating that dirty reads, non-repeatable reads and phantom reads are prevented. This level includes the prohibitions in TRANSACTION_REPEATABLE_READ and further prohibits the situation where one transaction reads all rows that satisfy a WHERE condition, a second transaction inserts a row that satisfies that WHERE condition, and the first transaction rereads for the same condition, retrieving the additional "phantom" row in the second read.

Source
TransactionIsolation.scala
Linear Supertypes
Serializable, Product, Equals, TransactionIsolation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Serializable
  2. Serializable
  3. Product
  4. Equals
  5. TransactionIsolation
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val intValue: Int
    Definition Classes
    TransactionIsolation
  2. def productElementName(n: Int): String
    Definition Classes
    Product
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product