[This is preliminary documentation and subject to change.]
Occurs during DbDataAdapter.Update after a command is executed against the data source.
The event handler receives an argument of type SqlCeRowUpdatedEventArgs containing data related to this event. The following SqlCeRowUpdatedEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Command | Gets the SqlCeCommand that is executed when DbDataAdapter.Update is called. |
| 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. |
| RowCount | Gets the number of rows processed in a batch of updated records. |
| StatementType | Gets the type of SQL statement executed. |
| Status | Gets the UpdateStatus of the Command property. |
| TableMapping | Gets the DataTableMapping sent through an Update. |
SqlCeDataAdapter Class | Primeworks.DesktopSqlCe Namespace