Database 생성자 (Server, String)
Initializes a new instance of the Database class on the specified server and with the specified name.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo
구문
‘선언
Public Sub New ( _
server As Server, _
name As String _
)
‘사용 방법
Dim server As Server
Dim name As String
Dim instance As New Database(server, _
name)
public Database(
Server server,
string name
)
public:
Database(
Server^ server,
String^ name
)
new :
server:Server *
name:string -> Database
public function Database(
server : Server,
name : String
)
매개 변수
- server
형식: Microsoft.SqlServer.Management.Smo. . :: . .Server
A Server object that represents the instance of SQL Server on which the database exists.
- name
형식: System. . :: . .String
A String value that specifies the name of the database.
예제
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Define a Database object variable by supplying the server and the database name arguments in the constructor.
Dim db As Database
db = New Database(srv, "Test_SMO_Database")
'Create the database on the instance of SQL Server.
db.Create()
'Reference the database and display the date when it was created.
db = srv.Databases("Test_SMO_Database")
Console.WriteLine(db.CreateDate)
'Remove the database.
db.Drop()