Partager via


Constructeur DacStore (SfcConnection)

Remarque : cette API est désormais obsolète.

Initialise une nouvelle instance de la classe DacStore connectée à l'instance spécifiée du moteur de base de données.

Espace de noms :  Microsoft.SqlServer.Management.Dac
Assembly :  Microsoft.SqlServer.Management.Dac (en Microsoft.SqlServer.Management.Dac.dll)

Syntaxe

'Déclaration
<ObsoleteAttribute> _
Public Sub New ( _
    connection As SfcConnection _
)
'Utilisation
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
)

Paramètres

Notes

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.

Exemples

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)