com.outr.query

TransactionMode

object TransactionMode extends Enumerated[TransactionMode]

Linear Supertypes
Enumerated[TransactionMode], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TransactionMode
  2. Enumerated
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +=(enum: TransactionMode): Unit

    Attributes
    protected[org.powerscala.enum]
    Definition Classes
    Enumerated
  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. val None: TransactionMode

    A constant indicating that transactions are not supported.

  8. val ReadCommitted: TransactionMode

    A constant indicating that dirty reads are prevented; non-repeatable reads and phantom reads can occur.

    A constant indicating that dirty reads are prevented; non-repeatable reads and phantom reads can occur. This level only prohibits a transaction from reading a row with uncommitted changes in it.

  9. val ReadUncommitted: TransactionMode

    A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur.

    A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur. This level allows a row changed by one transaction to be read by another transaction before any changes in that row have been committed (a "dirty read"). If any of the changes are rolled back, the second transaction will have retrieved an invalid row.

  10. val RepeatableRead: TransactionMode

    A constant indicating that dirty reads and non-repeatable reads are prevented; phantom reads can occur.

    A constant indicating that dirty reads and non-repeatable reads are prevented; phantom reads can occur. This level prohibits a transaction from reading a row with uncommitted changes in it, and it also prohibits the situation where one transaction reads a row, a second transaction alters the row, and the first transaction rereads the row, getting different values the second time (a "non-repeatable read").

  11. val Serializable: TransactionMode

    A constant indicating that dirty reads, non-repeatable reads and phantom reads are prevented.

    A constant 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.

  12. def apply(index: Int): TransactionMode

    Definition Classes
    Enumerated
  13. def apply(name: String, caseSensitive: Boolean): TransactionMode

    Definition Classes
    Enumerated
  14. def apply(name: String): TransactionMode

    Definition Classes
    Enumerated
  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def byValue(value: Int): TransactionMode

  17. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. def enumName(enum: EnumEntry): String

    Attributes
    protected[org.powerscala.enum]
    Definition Classes
    Enumerated
  19. def enumOrdinal(enum: EnumEntry): Int

    Attributes
    protected[org.powerscala.enum]
    Definition Classes
    Enumerated
  20. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def get(name: String): Option[TransactionMode]

    Definition Classes
    Enumerated
  24. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  25. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. lazy val length: Int

    Definition Classes
    Enumerated
  28. lazy val name: String

    Definition Classes
    Enumerated
  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. def random: TransactionMode

    Definition Classes
    Enumerated
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. implicit val thisEnumerated: Enumerated[EnumEntry]

    Definition Classes
    Enumerated
  35. def toString(): String

    Definition Classes
    AnyRef → Any
  36. def unapply(s: String): Option[TransactionMode]

    Definition Classes
    Enumerated
  37. lazy val values: List[TransactionMode]

    Definition Classes
    Enumerated
  38. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Enumerated[TransactionMode]

Inherited from AnyRef

Inherited from Any

Ungrouped