IsolationLevel Property

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Specifies the IsolationLevel for this transaction.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public override IsolationLevel IsolationLevel { get; }
Visual Basic
Public Overrides ReadOnly Property IsolationLevel As IsolationLevel
	Get
Visual C++
public:
virtual property IsolationLevel IsolationLevel {
	IsolationLevel get () override;
}

Field Value

The IsolationLevel for this transaction. The default is ReadCommitted.

Implements

IDbTransaction..::..IsolationLevel

Remarks

Parallel transactions are not supported. Therefore, the IsolationLevel applies to the entire transaction.

See Also