ComponentOne DataObjects for .NET
AfterUpdateRow Event (C1ExpressTable)

C1.Data.Express.2 Assembly > C1.Data.Express Namespace > C1ExpressTable Class : AfterUpdateRow Event
Fired after modifications made to a row are committed to the database.
Syntax
'Declaration
 
Public Event AfterUpdateRow As RowUpdateEventHandler
public event RowUpdateEventHandler AfterUpdateRow
Event Data

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

PropertyDescription
For a deleted row, the object representing the SQL DELETE command used to delete the row from the database.  
For an unsuccessful operation, information detailing the error.  
For an added row, the object representing the SQL INSERT command used to add the row to the database.  
The row that is committed to the database.  
For a modified and added row, the object representing the SQL SELELCT command used to refresh the row with database values after the row has been committed to the database.  
Success or failure status of the database access operation. For an unsuccessful operation, specifies the cause of failure.  
Success or failure status of the operation. In events occurring before operation and allowing to change the status argument, user code can change the status to indicate whether to proceed with the operation, skip or abort it.  
Returns the table collection with all data being updated to the database.  
Returns the table view collection with all data being updated to the database.  
For a modified row, the object representing the SQL UPDATE command used to add the row to the database.  
Remarks
See Also