VistaDB 6
VistaDB.Provider Namespace / VistaDBRowUpdatedEventArgs Class / VistaDBRowUpdatedEventArgs Constructor
The DataRow sent through an Update.
The IDbCommand to execute when Update is called.
The type of SQL statement to execute.
The DataTableMapping to send through an Update.


In This Topic
    VistaDBRowUpdatedEventArgs Constructor
    In This Topic
    Initializes a new instance of the VistaDBRowUpdatedEventArgs class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal row As System.Data.DataRow, _
       ByVal command As System.Data.IDbCommand, _
       ByVal statementType As System.Data.StatementType, _
       ByVal tableMapping As System.Data.Common.DataTableMapping _
    )
    'Usage
     
    
    Dim row As System.Data.DataRow
    Dim command As System.Data.IDbCommand
    Dim statementType As System.Data.StatementType
    Dim tableMapping As System.Data.Common.DataTableMapping
     
    Dim instance As New VistaDBRowUpdatedEventArgs(row, command, statementType, tableMapping)
    public VistaDBRowUpdatedEventArgs( 
       System.Data.DataRow row,
       System.Data.IDbCommand command,
       System.Data.StatementType statementType,
       System.Data.Common.DataTableMapping tableMapping
    )

    Parameters

    row
    The DataRow sent through an Update.
    command
    The IDbCommand to execute when Update is called.
    statementType
    The type of SQL statement to execute.
    tableMapping
    The DataTableMapping to send through an Update.
    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