Costruttore DacStore (SfcConnection)
Nota: questa API è obsoleta.
Inizializza una nuova istanza della classe DacStore collegata all'istanza specificata del motore di database.
Spazio dei nomi Microsoft.SqlServer.Management.Dac
Assembly: Microsoft.SqlServer.Management.Dac (in Microsoft.SqlServer.Management.Dac.dll)
Sintassi
'Dichiarazione
<ObsoleteAttribute> _
Public Sub New ( _
connection As SfcConnection _
)
'Utilizzo
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
)
Parametri
- connection
Tipo: Microsoft.SqlServer.Management.Sdk.Sfc. . :: . .SfcConnection
Valore SfcConnection che specifica la connessione all'istanza del Motore di database.
Osservazioni
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.
Esempi
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)
Vedere anche