dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteConnectionStringBuilder Class / Enlist Property

In This Topic
    Enlist Property
    In This Topic
    Gets or sets a Boolean value that indicates whether the connection is automatically enlisted in the current transaction context.
    Syntax
    'Declaration
     
    Public Property Enlist As Boolean
    public bool Enlist {get; set;}

    Property Value

    true, if the connection is automatically enlisted in the current transaction context; false otherwise.
    Remarks

    This property corresponds to the "Enlist" key within the connection string. The default value is true.

    SQLite engine itself doesn't support distributed transactions. Our provider emulates this support to allow using TransactionScope class.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also