DataConnector | ComponentOne
C1.AdoNet.Salesforce Assembly / C1.AdoNet.Salesforce Namespace / C1SalesforceDataAdapter Class / RowUpdating Event

In This Topic
    RowUpdating Event (C1SalesforceDataAdapter)
    In This Topic
    The event is fired when updating row
    Syntax
    'Declaration
     
    Public Event RowUpdating As RowUpdatingEventHandler
    public event RowUpdatingEventHandler RowUpdating
    Event Data

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

    PropertyDescription
    Gets the System.Data.IDbCommand to execute during the System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) operation.  
    Gets any errors generated by the .NET Framework data provider when the System.Data.Common.RowUpdatedEventArgs.Command executes.  
    Gets the System.Data.DataRow that will be sent to the server as part of an insert, update, or delete operation.  
    Gets the type of SQL statement to execute.  
    Gets or sets the System.Data.UpdateStatus of the System.Data.Common.RowUpdatedEventArgs.Command property.  
    Gets the System.Data.Common.DataTableMapping to send through the System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).  
    See Also