9. Understanding .NET Data Provider Connectivity : .NET Data Provider Classes : IngresRowUpdatedEventArgs Class
 
Share this page                  
IngresRowUpdatedEventArgs Class
The IngresRowUpdatedEventArgs class provides the information for the RowUpdated event of an IngresDataAdapter.
IngresRowUpdatedEventArgs Class Declaration
The class declaration for IngresRowUpdateEventArgs is as follows:
C#: public sealed class IngresRowUpdatedEventArgs : RowUpdatedEventArgs
VB.NET: NotInheritable Public Class IngresRowUpdatedEventArgs
Inherits RowUpdatedEventArgs
IngresRowUpdatedEventArgs Class Properties
The IngresRowUpdatedEventArgs has the following properties:
Property
Accessor
Description
Command
get
The IngresCommand executed when DbDataAdapter.Update method is called.
Errors
get
The Exception containing any errors generated during the execution of the IngresCommand. Inherited from RowUpdatedEventArgs.
RecordsAffected
get
The number of rows updated, inserted, or deleted during the execution of the UPDATE, INSERT, or DELETE SQL statement. Inherited from RowUpdatedEventArgs.
Row
get
The System.Data.DataRow sent through the DbDataAdapter.Update. Inherited from RowUpdatedEventArgs.
StatementType
get
The type of SQL statement executed. Inherited from RowUpdatedEventArgs.
Status
get
The System.Data.UpdateStatus of the IngresCommand. Inherited from RowUpdatedEventArgs.
TableMapping
get
The DataTableMapping sent through a DbDataAdapter.Update. Inherited from RowUpdatedEventArgs.