VistaDB 6
VistaDB.Provider Namespace / VistaDBDataAdapter Class / RowUpdated Event


In This Topic
    RowUpdated Event
    In This Topic
    Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires.
    Syntax
    'Declaration
     
    
    Public Event RowUpdated As VistaDBRowUpdatedEventHandler
    'Usage
     
    
    Dim instance As VistaDBDataAdapter
    Dim handler As VistaDBRowUpdatedEventHandler
     
    AddHandler instance.RowUpdated, handler
    public event VistaDBRowUpdatedEventHandler RowUpdated
    Event Data

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

    PropertyDescription
    Gets or sets a new instance of the VistaDBCommand class.  
    Gets any errors generated by the .NET Framework data provider when the System.Data.Common.RowUpdatedEventArgs.Command was executed. (Inherited from System.Data.Common.RowUpdatedEventArgs)
    Gets the number of rows changed, inserted, or deleted by execution of the SQL statement. (Inherited from System.Data.Common.RowUpdatedEventArgs)
    Gets the System.Data.DataRow sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet). (Inherited from System.Data.Common.RowUpdatedEventArgs)
    Gets the number of rows processed in a batch of updated records. (Inherited from System.Data.Common.RowUpdatedEventArgs)
    Gets the type of SQL statement executed. (Inherited from System.Data.Common.RowUpdatedEventArgs)
    Gets the System.Data.UpdateStatus of the System.Data.Common.RowUpdatedEventArgs.Command property. (Inherited from System.Data.Common.RowUpdatedEventArgs)
    Gets the System.Data.Common.DataTableMapping sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet). (Inherited from System.Data.Common.RowUpdatedEventArgs)
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also