TableName Constructor

Initializes a new instance of the TableName class.

Namespace:  Microsoft.SqlServer.Management.Dac
Assembly:  Microsoft.SqlServer.Management.Dac (in Microsoft.SqlServer.Management.Dac.dll)

Syntax

'Declaration
Public Sub New ( _
    schemaName As String, _
    tableName As String _
)
'Usage
Dim schemaName As String
Dim tableName As String

Dim instance As New TableName(schemaName, _
    tableName)
public TableName(
    string schemaName,
    string tableName
)
public:
TableName(
    String^ schemaName, 
    String^ tableName
)
new : 
        schemaName:string * 
        tableName:string -> TableName
public function TableName(
    schemaName : String, 
    tableName : String
)

Parameters

  • schemaName
    Type: System.String
    The name of the schema to which the table is scoped, if not specified, it defaults to dbo.
  • tableName
    Type: System.String
    The name of the table to be exported.

See Also

Reference

TableName Class

Microsoft.SqlServer.Management.Dac Namespace