VistaDB 6
VistaDB.DDA Namespace / IVistaDBDatabase Interface / NewTable Method
The name of new table


In This Topic
    NewTable Method
    In This Topic
    The first method to call in order to create new table in database. This method instantiates an IVistaDBTableSchema object and returns it.
    Syntax
    'Declaration
     
    
    Function NewTable( _
       ByVal name As System.String _
    ) As IVistaDBTableSchema
    'Usage
     
    
    Dim instance As IVistaDBDatabase
    Dim name As System.String
    Dim value As IVistaDBTableSchema
     
    value = instance.NewTable(name)
    IVistaDBTableSchema NewTable( 
       System.string name
    )

    Parameters

    name
    The name of new table

    Return Value

    IVistaDBTableSchema empty instance
    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