DataConnector | ComponentOne
C1.AdoNet.ServiceNow Assembly / C1.DataConnector.AdoNet Namespace / C1DataAdapterBase Class / RowUpdated Event

In This Topic
    RowUpdated Event (C1DataAdapterBase)
    In This Topic
    The event is fired when updated row
    Syntax
    'Declaration
     
    Public Event RowUpdated As RowUpdatedEventHandler
    public event RowUpdatedEventHandler RowUpdated
    Event Data

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

    PropertyDescription
    Gets the System.Data.IDbCommand executed when System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) is called.  
    Gets any errors generated by the .NET Framework data provider when the System.Data.Common.RowUpdatedEventArgs.Command was executed.  
    Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.  
    Gets the System.Data.DataRow sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).  
    Gets the number of rows processed in a batch of updated records.  
    Gets the type of SQL statement executed.  
    Gets the System.Data.UpdateStatus of the System.Data.Common.RowUpdatedEventArgs.Command property.  
    Gets the System.Data.Common.DataTableMapping sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).  
    See Also