iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

IsolationLevel Enumeration

Specifies the isolation level of a transaction.

[Visual Basic]
Public Enum IsolationLevel
[C#]
public enum IsolationLevel

Members

Member Name Description
Serializable Volatile data can be read but not modified, and no new data can be added during the transaction.
RepeatableRead Volatile data can be read but not modified during the transaction. New data may be added during the transaction.
ReadCommitted Volatile data cannot be read during the transaction, but can be modified.
ReadUncommitted Volatile data can be read and modified during the transaction.
Unspecified Volatile data can be read but not modified, and no new data can be added during the transaction.

Requirements

Namespace: IBatisNet.Common.Transaction

Assembly: IBatisNet.Common (in IBatisNet.Common.dll)

See Also

IBatisNet.Common.Transaction Namespace