Mimer Data Provider

MimerDataAdapter.RowUpdated Event

Called during Update after a command is executed against the database server.

[Visual Basic]
Public Event RowUpdated As MimerRowUpdatedEventHandler 
[C#]
public event MimerRowUpdatedEventHandler RowUpdated;
[C++]
public: __event MimerRowUpdatedEventHandler* RowUpdated;

[JScript] In JScript, you can use the events defined by a type, but you cannot define your own.

Event Data

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

PropertyDescription
Command Return the MimerCommand object for the current MimerRowUpdatedEventArgs.
Errors Gets any errors generated by the .NET Framework 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 property.
TableMapping Gets the DataTableMapping sent through an Update.

See Also

MimerDataAdapter Class | Mimer.Data.Client Namespace