Expand Minimize
This topic has not yet been rated - Rate this topic

PipelineComponent.ReleaseConnections Method

Frees the connections established during AcquireConnections. Called at design time and run time.

Namespace:  Microsoft.SqlServer.Dts.Pipeline
Assembly:  Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
public virtual void ReleaseConnections()

Called repeatedly during component design, and at the end of component execution. Components should release any connections that were opened and maintained in AcquireConnections.

private System.Data.OleDb.OleDbConnection oledbConnection;
public override void ReleaseConnections()
{
    if (oledbConnection != null && oledbConnection.State != ConnectionState.Closed )
        oledbConnection.Close();
}
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.