VistaDB 6
VistaDB.Provider Namespace / VistaDBConnection Class / GetTableSchema Method
Name of table to query, must already exist.


In This Topic
    GetTableSchema Method
    In This Topic
    Gets the schema for a given table from the current open connection.
    Syntax
    'Declaration
     
    
    Public Function GetTableSchema( _
       ByVal tableName As System.String _
    ) As IVistaDBTableSchema
    'Usage
     
    
    Dim instance As VistaDBConnection
    Dim tableName As System.String
    Dim value As IVistaDBTableSchema
     
    value = instance.GetTableSchema(tableName)
    public IVistaDBTableSchema GetTableSchema( 
       System.string tableName
    )

    Parameters

    tableName
    Name of table to query, must already exist.
    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