다음을 통해 공유


ScriptComponent.ReleaseConnections 메서드

Releases a connection to a connection manager.

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

구문

‘선언
Public Overridable Sub ReleaseConnections
‘사용 방법
Dim instance As ScriptComponent

instance.ReleaseConnections()
public virtual void ReleaseConnections()
public:
virtual void ReleaseConnections()
abstract ReleaseConnections : unit -> unit  
override ReleaseConnections : unit -> unit
public function ReleaseConnections()

주의

The Script component developer does not use the ScriptComponent class directly, but indirectly, by coding the methods and properties of the ScriptMain class, which inherits from ScriptComponent through the UserComponent class.

The developer can override the ReleaseConnections method in the ScriptMain class to disconnect from an external data source in a source or destination component.

The following code sample shows how a Script component developer might use the ReleaseConnections method to release a connection previously opened during the call to the AcquireConnections method.

Dim connMgr As IDTSConnectionManager100
Dim sqlConn As SqlConnection
...
Public Overrides Sub ReleaseConnections()

  connMgr.ReleaseConnection(sqlConn)

End Sub

참고 항목

참조

ScriptComponent 클래스

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