Occurs during an update after a command is executed against the data source. When an attempt to update is made, the event fires.
Visual Basic Public Event RowUpdated As ULRowUpdatedEventHandler
C# public event ULRowUpdatedEventHandler RowUpdated;
To process row updated events, you must create a ULRowUpdatedEventHandler delegate and attach it to this event.
Command Returns the ULCommand executed when DbDataAdapter.Update(System.Data.DataRow[],System.Data.Common.DataTableMapping) is called.
RecordsAffected Returns the number of rows changed, inserted, or deleted by the execution of the SQL statement. For SELECT statements this value is -1.
Command Gets the IDbCommand executed when DbDataAdapter.Update is called.
Errors Gets any errors generated by the .NET Framework data provider when the RowUpdatedEventArgs.Command was executed.
Row Gets the DataRow sent through an DbDataAdapter.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 RowUpdatedEventArgs.Command.
TableMapping Gets the DataTableMapping sent through an DbDataAdapter.Update.
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |