Метод IDTSDesigntimeComponent100.AcquireConnections
Establishes a connection to a connection manager.
Пространство имен: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Сборка: Microsoft.SqlServer.DTSPipelineWrap (в Microsoft.SqlServer.DTSPipelineWrap.dll)
Синтаксис
'Декларация
Sub AcquireConnections ( _
pTransaction As Object _
)
'Применение
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
)
Параметры
- pTransaction
Тип: System.Object
The transaction associated with the connection.
Замечания
The 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.