VistaDB 6
VistaDB.DDA Namespace / IVistaDBTable Interface / ExportData Method
Destination table. Must not be this table instance
Constraint to activate while exporting data. The constraint is being applied to the destination table and checking every new row. It acts like the 'after creating row constraint'. Must be null reference if no constraint is set


In This Topic
    ExportData Method
    In This Topic
    To export table data using constraint set on destination table.
    Syntax
    'Declaration
     
    
    Sub ExportData( _
       ByVal table As IVistaDBTable, _
       ByVal constraint As System.String _
    ) 
    'Usage
     
    
    Dim instance As IVistaDBTable
    Dim table As IVistaDBTable
    Dim constraint As System.String
     
    instance.ExportData(table, constraint)
    void ExportData( 
       IVistaDBTable table,
       System.string constraint
    )

    Parameters

    table
    Destination table. Must not be this table instance
    constraint
    Constraint to activate while exporting data. The constraint is being applied to the destination table and checking every new row. It acts like the 'after creating row constraint'. Must be null reference if no constraint is set
    Remarks
    SetFilter may be applied to this table before calling the method in order to export only filtered data
    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