Método AcquireConnections
Establishes a connection to a connection manager.
Namespace: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (em Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintaxe
'Declaração
Sub AcquireConnections ( _
pTransaction As Object _
)
'Uso
Dim instance As IDTSDesigntimeComponent100
Dim pTransaction As Object
instance.AcquireConnections(pTransaction)
void AcquireConnections(
Object pTransaction
)
void AcquireConnections(
[InAttribute] Object^ pTransaction
)
abstract AcquireConnections :
pTransaction:Object -> unit
function AcquireConnections(
pTransaction : Object
)
Parâmetros
- pTransaction
Tipo: System. . :: . .Object
The transaction associated with the connection.
Comentários
AcquireConnections is called during both component design and execution. Components that connect to external data sources should establish their connections by using this method. Any connection established during this method should be cached in a local member variable, and released during the ReleaseConnections method.
Consulte também