Server 생성자 (ServerConnection)
지정한 연결을 기준으로 Server 클래스의 새 인스턴스를 초기화합니다.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)
구문
‘선언
Public Sub New ( _
serverConnection As ServerConnection _
)
‘사용 방법
Dim serverConnection As ServerConnection
Dim instance As New Server(serverConnection)
public Server(
ServerConnection serverConnection
)
public:
Server(
ServerConnection^ serverConnection
)
new :
serverConnection:ServerConnection -> Server
public function Server(
serverConnection : ServerConnection
)
매개 변수
- serverConnection
유형: Microsoft.SqlServer.Management.Common. . :: . .ServerConnection
SQL Server 인스턴스에 대한 연결을 지정하는 ServerConnection 개체 값입니다.
예
Visual Basic
'Connect to the local, default instance of SQL Server.
Dim srv1 As Server
srv1 = New Server()
'Modify the default database and the timeout period for the connection.
srv1.ConnectionContext.DatabaseName = "AdventureWorks2008R2"
srv1.ConnectionContext.ConnectTimeout = 30
'Make a second connection using a copy of the ConnectionContext property and verify settings.
Dim srv2 As Server
srv2 = New Server(srv1.ConnectionContext.Copy)
Console.WriteLine(srv2.ConnectionContext.ConnectTimeout.ToString)
PowerShell
#Connect to the local, default instance of SQL Server.
$srv1 = new-object Microsoft.SqlServer.Management.Smo.Server
#Modify the default database and the timeout period for the connection.
$srv1.ConnectionContext.DatabaseName = "AdventureWorks2008R2"
$srv1.ConnectionContext.ConnectTimeout = 30
#Make a second connection using a copy of the ConnectionContext property and verify settings.
$srv2 = new-object Microsoft.SqlServer.Management.Smo.Server($srv1.ConnectionContext.Copy)
Write-Host $srv2.ConnectionContext.ConnectTimeout.ToString()