Table 생성자 (Database, String, String)
지정한 데이터베이스에서 지정한 이름과 스키마를 가진 Table 클래스의 새 인스턴스를 초기화합니다.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)
구문
‘선언
Public Sub New ( _
database As Database, _
name As String, _
schema As String _
)
‘사용 방법
Dim database As Database
Dim name As String
Dim schema As String
Dim instance As New Table(database, _
name, schema)
public Table(
Database database,
string name,
string schema
)
public:
Table(
Database^ database,
String^ name,
String^ schema
)
new :
database:Database *
name:string *
schema:string -> Table
public function Table(
database : Database,
name : String,
schema : String
)
매개 변수
- database
유형: Microsoft.SqlServer.Management.Smo. . :: . .Database
Table 개체를 만들 데이터베이스를 지정하는 Database 개체 값입니다.
- name
유형: System. . :: . .String
만들 테이블의 스키마 이름을 지정하는 String 값입니다.
- schema
유형: System. . :: . .String
만들 테이블의 스키마 이름을 지정하는 String 값입니다.
예
The following code example shows how to declare a new table on the specified database, with the specified name.
C#
Server srv = new Server("(local)");
Database db = srv.Databases["AdventureWorks2008R2"];
Table tb = new Table(db, "Test Table", "Public");
Powershell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
#Define the Table
$tb = new-object Microsoft.SqlServer.Management.Smo.Table($db, "Test Table", "Public")