OracleDataAdapter.RowUpdated Event
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.
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:
The values in the DataRow are moved to the parameter values.
The
OnRowUpdating
event is raised.The command executes.
If the
UpdateRowSource
enumeration is set toFirstReturnedRecord
, the first returned result is placed in the DataRow.If there are output parameters, they are placed in the DataRow.
The
OnRowUpdated
event is raised.AcceptChanges
is called.