DacStore Constructor (SfcConnection)
Note: This API is now obsolete.
Initializes a new instance of the DacStore class connected to the specified instance of the Database Engine.
Namespace: Microsoft.SqlServer.Management.Dac
Assembly: Microsoft.SqlServer.Management.Dac (in Microsoft.SqlServer.Management.Dac.dll)
Syntax
'Declaration
<ObsoleteAttribute> _
Public Sub New ( _
connection As SfcConnection _
)
'Usage
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
)
Parameters
- connection
Type: Microsoft.SqlServer.Management.Sdk.Sfc.SfcConnection
A SfcConnection value that specifies the connection to an instance of the Database Engine.
Remarks
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.
Examples
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)