OdbcDataAdapter.RowUpdated Event

Definition

Occurs during an update operation after a command is executed against the data source.

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

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