Mimer Provider Manager

MpmDataAdapter.RowUpdated Event

Called during Update after a command is executed against the data source.

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

Event Data

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

PropertyDescription
CommandGets the executed when is called.
DataSourceDescriptor The DataSourceDescriptor controls which underlying plugin and SQL Filters are used for the object.
ErrorsGets any errors generated by the .NET Framework data provider when the was executed.
NativeRowUpdatedEventArgs Gets the for the object.
RecordsAffected The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.
RowGets the sent through an .
StatementTypeGets the type of SQL statement executed.
StatusGets the of the property.
TableMappingGets the sent through an .

Remarks

When an event is added the data source must have been established, i.e. a constructor for the MpmDataAdapter which includes connection information or the SelectCommand must specify an MpmCommand object that is associated with an initialized MpmConnection object.

See Also

MpmDataAdapter Class | Mimer.Mpm.Data Namespace