prorm API Reference
    Preparing search index...

    Enumeration IsolationLevel

    ANSI SQL transaction isolation levels.

    This is a companion enum for IsolationLevelString / the TransactionOptions.isolationLevel field. The field accepts both this enum and the raw string literals for backwards compatibility, so either of the following work:

    transaction.start({ isolationLevel: 'SERIALIZABLE' });
    
    transaction.start({ isolationLevel: IsolationLevel.Serializable });
    
    Index
    ReadUncommitted: "READ UNCOMMITTED"
    ReadCommitted: "READ COMMITTED"
    RepeatableRead: "REPEATABLE READ"
    Serializable: "SERIALIZABLE"