Data Port Sync 1.0.500

SqlCeDataAdapter.SqlCeRowUpdatedEventHandler Event

[This is preliminary documentation and subject to change.]

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

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

Event Data

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.

See Also

SqlCeDataAdapter Class | Primeworks.DesktopSqlCe Namespace