2.2.2.1.2 IsolationLevel

The IsolationLevel enumeration is a one-to-one mapping of the OLETX_ISOLATION_LEVEL enumeration, as specified in [MS-DTCO] (section 2.2.6.9).

 typedef  enum IsolationLevel
 {
   Serializable = 0,
   RepeatableRead = 1,
   ReadCommitted = 2,
   ReadUncommitted = 3,
   Chaos = 5,
   Unspecified = 6
 } IsolationLevel;

Serializable:  Equivalent to ISOLATIONLEVEL_SERIALIZABLE.

RepeatableRead:  Equivalent to ISOLATIONLEVEL_REPEATABLEREAD.

ReadCommitted:  Equivalent to ISOLATIONLEVEL_READCOMMITTED.

ReadUncommitted:  Equivalent to ISOLATIONLEVEL_READUNCOMMITTED.

Chaos:  Equivalent to ISOLATIONLEVEL_CHAOS.

Unspecified:  Equivalent to ISOLATIONLEVEL_UPSPECIFIED.