Logger.debug( PooledDatasourceHelper.class, "Pool defaults to " + maxActiveConnection + " max active/"
+ maxIdleConnection + "max idle" + "with " + waitTime + "wait time"//$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
+ " idle connections." ); //$NON-NLS-1$
for ( int i = 0; i < maxIdleConnection; ++i ) {
pool.addObject();
}
Logger.debug( PooledDatasourceHelper.class, "Pool now has " + pool.getNumActive() + " active/"
+ pool.getNumIdle() + " idle connections." ); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
/*
* All of this is wrapped in a DataSource, which client code should already know how to handle (since it's the