Udostępnij za pośrednictwem


Metoda ConnectionManagerBase.ReleaseConnection

Zwalnia połączenie ustanowione podczas AcquireConnection.O nazwie w projekcie czas i uruchom czas.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public Overridable Sub ReleaseConnection ( _
    connection As Object _
)
'Użycie
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
)

Parametry

Uwagi

Metoda ta jest wywoływana wielokrotnie podczas projektowania składnika przez aparat runtime i na końcu wykonanie składnika.Składniki Zwolnij wszystkie połączenia, które były otwierane i utrzymywane w AcquireConnection.Metoda ta jest wywoływana tylko wtedy, gdy OfflineMode jest false.

Przykłady

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