dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlCommandBuilder Class / PgSqlCommandBuilder Constructor / PgSqlCommandBuilder Constructor(PgSqlDataAdapter)

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

    Parameters

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

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

    See Also