Npgsql API Documentation

NpgsqlDataAdapter.RowUpdated Event

[This is preliminary documentation and subject to change.]

[Visual Basic]
Public Event RowUpdated As NpgsqlRowUpdatedEventHandler
[C#]
public event NpgsqlRowUpdatedEventHandler RowUpdated;

Event Data

The event handler receives an argument of type NpgsqlRowUpdatedEventArgs containing data related to this event. The following NpgsqlRowUpdatedEventArgs properties provide information specific to this event.

Property Description
Command Gets the IDbCommand executed when Update is called.
Errors Gets any errors generated by the .NET data provider when the Command was executed.
RecordsAffected Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.
Row Gets the DataRow sent through an Update .
StatementType Gets the type of SQL statement executed.
Status Gets the UpdateStatus of the Command.
TableMapping Gets the DataTableMapping sent through an Update.

See Also

NpgsqlDataAdapter Class | Npgsql Namespace