ConnectionManagerBase.ReleaseConnection 메서드

Frees the connection established during AcquireConnection. Called at design time and run time.

네임스페이스:  Microsoft.SqlServer.Dts.Runtime
어셈블리:  Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)

구문

‘선언
Public Overridable Sub ReleaseConnection ( _
    connection As Object _
)
‘사용 방법
Dim instance As ConnectionManagerBase 
Dim connection As Object

instance.ReleaseConnection(connection)
public virtual void ReleaseConnection(
    Object connection
)
public:
virtual void ReleaseConnection(
    Object^ connection
)
abstract ReleaseConnection : 
        connection:Object -> unit  
override ReleaseConnection : 
        connection:Object -> unit
public function ReleaseConnection(
    connection : Object
)

매개 변수

주의

This method is called repeatedly during component design by the runtime engine and at the end of component execution. The components then release any connections that were opened and maintained in AcquireConnection. This method is called only when OfflineMode is false.

private System.Data.OleDb.OleDbConnection oledbConnection;
public override void ReleaseConnections()
{
    if (oledbConnection != null && oledbConnection.State != ConnectionState.Closed )
        oledbConnection.Close();
}
Private oledbConnection As System.Data.OleDb.OleDbConnection
Public Overrides  Sub ReleaseConnections()
    If oledbConnection <> Nothing And oledbConnection.State <> ConnectionState.Closed Then
        oledbConnection.Close()
    End If
End Sub

참고 항목

참조

ConnectionManagerBase 클래스

Microsoft.SqlServer.Dts.Runtime 네임스페이스