IsolationLevel Property

MySQL Connector/Net

Specifies the IsolationLevel for this transaction.

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

Syntax

C#
public override IsolationLevel IsolationLevel { get; }
Visual Basic (Declaration)
Public Overrides ReadOnly Property IsolationLevel As IsolationLevel
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