Share via


ITabularFactory.CreateTable Method (ISchema, String)

Creates a database table object that belongs to the specified ISchema object and has specified name.

Namespace:  Microsoft.SqlServer.Management.SqlParser.MetadataProvider
Assembly:  Microsoft.SqlServer.Management.SqlParser (in Microsoft.SqlServer.Management.SqlParser.dll)

Syntax

'Declaration
Function CreateTable ( _
    schema As ISchema, _
    name As String _
) As IMutableTable
'Usage
Dim instance As ITabularFactory
Dim schema As ISchema
Dim name As String
Dim returnValue As IMutableTable

returnValue = instance.CreateTable(schema, _
    name)
IMutableTable CreateTable(
    ISchema schema,
    string name
)
IMutableTable^ CreateTable(
    ISchema^ schema, 
    String^ name
)
abstract CreateTable : 
        schema:ISchema * 
        name:string -> IMutableTable 
function CreateTable(
    schema : ISchema, 
    name : String
) : IMutableTable

Parameters