OracleConnection.ClearPool(OracleConnection) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Empties the connection pool associated with the specified connection.
public:
static void ClearPool(System::Data::OracleClient::OracleConnection ^ connection);
public static void ClearPool (System.Data.OracleClient.OracleConnection connection);
static member ClearPool : System.Data.OracleClient.OracleConnection -> unit
Public Shared Sub ClearPool (connection As OracleConnection)
Parameters
- connection
- OracleConnection
The OracleConnection to be cleared from the pool.
Remarks
ClearPool method clears the connection pool that is associated with connection
. If additional connections associated with connection
are in use at the time of the call, they are marked appropriately and are discarded when Close is called on them.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.