Entity
    Preparing search index...

    Enumeration TransactionIsolationLevel

    Database transaction isolation level. Controls the visibility of changes made by concurrent transactions, trading off between consistency and performance.

    Index

    Enumeration Members

    READ_COMMITTED: "READ_COMMITTED"

    Each statement sees only data committed before it began. Default for most databases.

    REPEATABLE_READ: "REPEATABLE_READ"

    All statements in the transaction see the same snapshot taken at the start of the transaction.

    SERIALIZABLE: "SERIALIZABLE"

    Transactions execute as if they were run one at a time. Strongest guarantee but lowest throughput.