VistaDB 6
VistaDB.Provider Namespace / VistaDBDataAdapter Class / CreateRowUpdatedEvent Method
The System.Data.DataRow used to update the data source.
The System.Data.IDbCommand executed during the System.Data.IDataAdapter.Update(System.Data.DataSet).
Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.
A System.Data.Common.DataTableMapping object.


In This Topic
    CreateRowUpdatedEvent Method
    In This Topic
    Initializes a new instance of the System.Data.Common.RowUpdatedEventArgs class.
    Syntax
    'Declaration
     
    
    Protected Overrides NotOverridable Function CreateRowUpdatedEvent( _
       ByVal dataRow As System.Data.DataRow, _
       ByVal command As System.Data.IDbCommand, _
       ByVal statementType As System.Data.StatementType, _
       ByVal tableMapping As System.Data.Common.DataTableMapping _
    ) As System.Data.Common.RowUpdatedEventArgs
    'Usage
     
    
    Dim instance As VistaDBDataAdapter
    Dim dataRow As System.Data.DataRow
    Dim command As System.Data.IDbCommand
    Dim statementType As System.Data.StatementType
    Dim tableMapping As System.Data.Common.DataTableMapping
    Dim value As System.Data.Common.RowUpdatedEventArgs
     
    value = instance.CreateRowUpdatedEvent(dataRow, command, statementType, tableMapping)
    protected override System.Data.Common.RowUpdatedEventArgs CreateRowUpdatedEvent( 
       System.Data.DataRow dataRow,
       System.Data.IDbCommand command,
       System.Data.StatementType statementType,
       System.Data.Common.DataTableMapping tableMapping
    )

    Parameters

    dataRow
    The System.Data.DataRow used to update the data source.
    command
    The System.Data.IDbCommand executed during the System.Data.IDataAdapter.Update(System.Data.DataSet).
    statementType
    Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.
    tableMapping
    A System.Data.Common.DataTableMapping object.

    Return Value

    A new instance of the System.Data.Common.RowUpdatedEventArgs class.
    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