
SqlConnection.ClearPool Method
Note: This method is new in the .NET Framework version 2.0.
Empties the connection pool associated with the specified connection.
Namespace: System.Data.SqlClient
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
Syntax
'Declaration Public Shared Sub ClearPool ( _ connection As SqlConnection _ )
'Usage Dim connection As SqlConnection SqlConnection.ClearPool(connection)
Parameters
- connection
The SqlConnection to be cleared from the pool.
Remarks
ClearPool clears the connection pool that is associated with the connection. If additional connections associated with connection are in use at the time of the call, they are marked appropriately and are discarded (instead of being returned to the pool) when Close is called on them.
Platforms
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
