Mimer Data Provider

MimerDataAdapter.RowUpdating Event

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

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

[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 MimerRowUpdatingEventArgs containing data related to this event. The following MimerRowUpdatingEventArgs properties provide information specific to this event.

PropertyDescription
Command Return the MimerCommand object for the current MimerRowUpdatingEventArgs.
Errors Gets any errors generated by the .NET Framework data provider when the Command executes.
Row Gets the DataRow to send through an Update .
StatementType Gets the type of SQL statement to execute.
Status Gets the UpdateStatus of the Command property.
TableMapping Gets the DataTableMapping to send through the Update.

See Also

MimerDataAdapter Class | Mimer.Data.Client Namespace