MySqlTransaction.IsolationLevel Property

MySQL Connector/Net

MySqlTransactionIsolationLevel Property
Specifies the IsolationLevel for this transaction.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public override IsolationLevel IsolationLevel { get; }
Public Overrides ReadOnly Property IsolationLevel As IsolationLevel
	Get
public:
virtual property IsolationLevel IsolationLevel {
	IsolationLevel get () override;
}
abstract IsolationLevel : IsolationLevel with get
override IsolationLevel : IsolationLevel with get

Property Value

Type: IsolationLevel
The IsolationLevel for this transaction. The default is ReadCommitted.

Implements

IDbTransactionIsolationLevel
Remarks
Parallel transactions are not supported. Therefore, the IsolationLevel applies to the entire transaction.
See Also