Create the pool. Note that changes to jdbcConfig have no effect on the
pool after construction i.e. fields in jdbcConfig are copied not
referenced. The sqlDriver parameter is used to customize the pool
to workaround bugs and so on in the JDBC driver or database. It can
be null.
Close all idle connections. This method closes idleCount connections.
If another thread is making new connections at the same time the
idle list will not be empty on return.
Allocate a PooledConnection from the pool.
Parameters: highPriority - If this is true then reserved high priority Parameters: autoCommit - Must the connection have autoCommit set?
Return a PooledConnection to the pool. This is called by
PooledConnection when it is closed. This is a NOP if the connection
has been destroyed.
See Also:PooledConnection.close
public void setIsolationLevel(int isolationLevel)(Code)
If isolationLevel != 0 then the isolation level of newly created
Connections is set to this.
See Also:Connection.TRANSACTION_READ_COMMITTED See Also: etc
setJdbcDisablePsCache
public void setJdbcDisablePsCache(boolean jdbcDisablePsCache)(Code)