* established in the pool.
* @param poolInfo
* @throws com.sun.appserv.connectors.internal.api.ConnectorRuntimeException
*/
public boolean flushConnectionPool(PoolInfo poolInfo) throws ConnectorRuntimeException {
PoolManager poolMgr = _runtime.getPoolManager();
try {
return poolMgr.flushConnectionPool( poolInfo );
} catch (PoolingException ex) {
ConnectorRuntimeException e = new ConnectorRuntimeException(
ex.getLocalizedMessage() +
". Please check the server.log for more details.");
e.initCause(ex);