dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteCommandBuilder Class / DataAdapter Property

In This Topic
    DataAdapter Property
    In This Topic
    Gets or sets a SQLiteDataAdapter object for which this SQLiteCommandBuilder object will generate SQL statements.
    Syntax
    'Declaration
     
    Public Shadows Property DataAdapter As SQLiteDataAdapter
    public new SQLiteDataAdapter DataAdapter {get; set;}

    Property Value

    A SQLiteDataAdapter object that is associated with this SQLiteCommandBuilder.
    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