다음을 통해 공유


DacStore 생성자 (SfcConnection)

참고: 이 API는 더 이상 사용되지 않습니다.

지정한 데이터베이스 엔진 인스턴스에 연결되는 DacStore 클래스의 새 인스턴스를 초기화합니다.

네임스페이스:  Microsoft.SqlServer.Management.Dac
어셈블리:  Microsoft.SqlServer.Management.Dac(Microsoft.SqlServer.Management.Dac.dll)

구문

‘선언
<ObsoleteAttribute> _
Public Sub New ( _
    connection As SfcConnection _
)
‘사용 방법
Dim connection As SfcConnection

Dim instance As New DacStore(connection)
[ObsoleteAttribute]
public DacStore(
    SfcConnection connection
)
[ObsoleteAttribute]
public:
DacStore(
    SfcConnection^ connection
)
[<ObsoleteAttribute>]
new : 
        connection:SfcConnection -> DacStore
public function DacStore(
    connection : SfcConnection
)

매개 변수

주의

The connection parameter is required when the application is running in connected mode. The SfcConnection class is a generic base class. Derived connection classes can be used such as SqlStoreConnection class.

VC#

ServerConnection serverConnection;
serverConnection = new ServerConnection("MYSERVER");
SqlStoreConnection sqlStoreConnection;
sqlStoreConnection = new SqlStoreConnection(serverConnection.SqlConnectionObject);
DacStore newDacStore;
newDacStore = new DacStore(sqlStoreConnection);

VB

Dim serverConnection As ServerConnection 
serverConnection = New ServerConnection("MYSERVER") 
Dim sqlStoreConnection As SqlStoreConnection 
sqlStoreConnection = New SqlStoreConnection(serverConnection.SqlConnectionObject) 
Dim newDacStore As DacStore 
newDacStore = New DacStore(sqlStoreConnection)

PowerShell

$serverConnection = New-Object Microsoft.SqlServer.Management.Common.ServerConnection("MYSERVER")
$sqlStoreConnection = New-Object Microsoft.SqlServer.Management.Sdk.Sfc.SqlStoreConnection($serverConnection.SqlConnectionObject)
$newDacStore = New-Object Microsoft.SqlServer.Management.Dac.DacStore($sqlStoreConnection)