IDTSDesigntimeComponent100.AcquireConnections(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Establishes a connection to a connection manager.
public:
void AcquireConnections(System::Object ^ pTransaction);
[System.Runtime.InteropServices.DispId(30)]
public void AcquireConnections (object pTransaction);
[<System.Runtime.InteropServices.DispId(30)>]
abstract member AcquireConnections : obj -> unit
Public Sub AcquireConnections (pTransaction As Object)
Parameters
- pTransaction
- Object
The transaction associated with the connection.
- Attributes
Remarks
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.