DbCommandBuilder.SetRowUpdatingHandler(DbDataAdapter) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.