VistaDB 6
VistaDB.Provider Namespace / VistaDBDataAdapter Class / FillSchema Method / FillSchema(DataTable,SchemaType) Method
The System.Data.DataTable to be filled with the schema from the data source.
One of the System.Data.SchemaType values.


In This Topic
    FillSchema(DataTable,SchemaType) Method
    In This Topic
    Configures the schema of the specified System.Data.DataTable based on the specified System.Data.SchemaType.
    Syntax
    'Declaration
     
    
    Public Overloads Function FillSchema( _
       ByVal dataTable As System.Data.DataTable, _
       ByVal schemaType As System.Data.SchemaType _
    ) As System.Data.DataTable
    'Usage
     
    
    Dim instance As VistaDBDataAdapter
    Dim dataTable As System.Data.DataTable
    Dim schemaType As System.Data.SchemaType
    Dim value As System.Data.DataTable
     
    value = instance.FillSchema(dataTable, schemaType)
    public System.Data.DataTable FillSchema( 
       System.Data.DataTable dataTable,
       System.Data.SchemaType schemaType
    )

    Parameters

    dataTable
    The System.Data.DataTable to be filled with the schema from the data source.
    schemaType
    One of the System.Data.SchemaType values.

    Return Value

    A System.Data.DataTable that contains schema information returned from the data source.
    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