Op Englesch liesen Editéieren

Deelen iwwer


OdbcDataAdapter.RowUpdated Event

Definition

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

C#
public event System.Data.Odbc.OdbcRowUpdatedEventHandler? RowUpdated;
C#
public event System.Data.Odbc.OdbcRowUpdatedEventHandler RowUpdated;

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

Produkt Versiounen
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

See also