dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlTransaction Class / IsolationLevel Property

In This Topic
    IsolationLevel Property (MySqlTransaction)
    In This Topic
    Specifies the System.Data.IsolationLevel for this transaction.
    Syntax
    'Declaration
     
    Public Overrides ReadOnly Property IsolationLevel As IsolationLevel
    public override IsolationLevel IsolationLevel {get;}

    Property Value

    The System.Data.IsolationLevel for this transaction. The default value is IsolationLevel.ReadCommitted.
    Remarks
    The System.Data.IsolationLevel applies to the entire transaction.

    The following isolation levels are supported by dotConnect for MySQL:

    • ReadCommitted
    • Serializable
    • ReadUncommitted
    • RepeatableRead

    See Also