OracleDataAdapter.RowUpdated Event

Definition

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

public:
 event System::Data::OracleClient::OracleRowUpdatedEventHandler ^ RowUpdated;
public event System.Data.OracleClient.OracleRowUpdatedEventHandler RowUpdated;
member this.RowUpdated : System.Data.OracleClient.OracleRowUpdatedEventHandler 
Public Custom Event RowUpdated As OracleRowUpdatedEventHandler 

Event Type

Remarks

When using the Update method, 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 UpdateRowSource enumeration 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