dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteCommandBuilder Class / SQLiteCommandBuilder Constructor / SQLiteCommandBuilder Constructor(SQLiteDataAdapter)

In This Topic
    SQLiteCommandBuilder Constructor(SQLiteDataAdapter)
    In This Topic
    Initializes a new instance of the SQLiteCommandBuilder class with the associated SQLiteDataAdapter object.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal adapter As SQLiteDataAdapter _
    )
    public SQLiteCommandBuilder( 
       SQLiteDataAdapter adapter
    )

    Parameters

    adapter
    Remarks
    The SQLiteCommandBuilder registers itself as a listener for SQLiteDataAdapter.RowUpdating events that are generated by the SQLiteDataAdapter specified in this property.

    When you create a new instance of SQLiteCommandBuilder, any existing SQLiteCommandBuilder associated with this SQLiteDataAdapter is released.

    See Also