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
'Déclaration
Public Sub New ( _
schemaName As String, _
tableName As String _
)
'Utilisation
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: String
The name of the schema to which the table is scoped, if not specified, it defaults to dbo.
- tableName
Type: String
The name of the table to be exported.