DbCommandBuilder.SetRowUpdatingHandler(DbDataAdapter) Method

Definition

Registers the DbCommandBuilder to handle the RowUpdating event for a DbDataAdapter.

protected:
 abstract void SetRowUpdatingHandler(System::Data::Common::DbDataAdapter ^ adapter);
protected abstract void SetRowUpdatingHandler (System.Data.Common.DbDataAdapter adapter);
abstract member SetRowUpdatingHandler : System.Data.Common.DbDataAdapter -> unit
Protected MustOverride Sub SetRowUpdatingHandler (adapter As DbDataAdapter)

Parameters

adapter
DbDataAdapter

The DbDataAdapter to be used for the update.

Remarks

This method is intended for use by provider writers building a custom command builder. When a new DbDataAdapter is added to the DbCommandBuilder, it is registered for the DbDataAdapter's RowUpdating event. If this method is called again with the same DbDataAdapter, the DbCommandBuilder is unregistered for that DbDataAdapter's RowUpdating event.

Applies to

See also