OdbcDataAdapter.RowUpdating Event

Definition

Occurs during Update(DataSet) before a command is executed against the data source.

public:
 event System::Data::Odbc::OdbcRowUpdatingEventHandler ^ RowUpdating;
public event System.Data.Odbc.OdbcRowUpdatingEventHandler RowUpdating;
public event System.Data.Odbc.OdbcRowUpdatingEventHandler? RowUpdating;
member this.RowUpdating : System.Data.Odbc.OdbcRowUpdatingEventHandler 
Public Custom Event RowUpdating As OdbcRowUpdatingEventHandler 

Event Type

Remarks

When you use Update, there are two events that occur per data row updated. The order of execution is as follows:

  1. The values in the DataRow are moved to the parameter values.

  2. The OnRowUpdating event is raised.

  3. The command executes.

  4. If the command is set to FirstReturnedRecord, the first returned result is placed in the DataRow.

  5. If there are output parameters, they are placed in the DataRow.

  6. The OnRowUpdated event is raised.

  7. AcceptChanges is called.

Applies to

See also