void | close() - Close pool(s) being maintained by this datasource.
|
int | getDefaultMaxActive() - The maximum number of active connections that can be allocated from
this pool at the same time, or non-positive for no limit.
|
int | getDefaultMaxIdle() - The maximum number of active connections that can remain idle in the
pool, without extra ones being released, or negative for no limit.
|
int | getDefaultMaxWait() - The maximum number of milliseconds that the pool will wait (when there
are no available connections) for a connection to be returned before
throwing an exception, or -1 to wait indefinitely.
|
int | getNumActive() - Get the number of active connections in the default pool.
|
int | getNumActive(String username, String password) - Get the number of active connections in the pool for a given user.
|
int | getNumIdle() - Get the number of idle connections in the default pool.
|
int | getNumIdle(String username, String password) - Get the number of idle connections in the pool for a given user.
|
Boolean | getPerUserDefaultAutoCommit(String key) - The keys are usernames and the value is the --.
|
Boolean | getPerUserDefaultReadOnly(String username) - The keys are usernames and the value is the --.
|
Integer | getPerUserDefaultTransactionIsolation(String username) - The isolation level of connections when returned from getConnection.
|
Integer | getPerUserMaxActive(String username) - The maximum number of active connections that can be allocated from
this pool at the same time, or non-positive for no limit.
|
Integer | getPerUserMaxIdle(String username) - The maximum number of active connections that can remain idle in the
pool, without extra ones being released, or negative for no limit.
|
Integer | getPerUserMaxWait(String username) - The maximum number of milliseconds that the pool will wait (when there
are no available connections) for a connection to be returned before
throwing an exception, or -1 to wait indefinitely.
|
Reference | getReference() - Returns a
PerUserPoolDataSource Reference .
|
void | setDefaultMaxActive(int maxActive) - The maximum number of active connections that can be allocated from
this pool at the same time, or non-positive for no limit.
|
void | setDefaultMaxIdle(int defaultMaxIdle) - The maximum number of active connections that can remain idle in the
pool, without extra ones being released, or negative for no limit.
|
void | setDefaultMaxWait(int defaultMaxWait) - The maximum number of milliseconds that the pool will wait (when there
are no available connections) for a connection to be returned before
throwing an exception, or -1 to wait indefinitely.
|
void | setPerUserDefaultAutoCommit(String username, Boolean value) - The keys are usernames and the value is the --.
|
void | setPerUserDefaultReadOnly(String username, Boolean value) - The keys are usernames and the value is the --.
|
void | setPerUserDefaultTransactionIsolation(String username, Integer value) - The isolation level of connections when returned from getConnection.
|
void | setPerUserMaxActive(String username, Integer value) - The maximum number of active connections that can be allocated from
this pool at the same time, or non-positive for no limit.
|
void | setPerUserMaxIdle(String username, Integer value) - The maximum number of active connections that can remain idle in the
pool, without extra ones being released, or negative for no limit.
|
void | setPerUserMaxWait(String username, Integer value) - The maximum number of milliseconds that the pool will wait (when there
are no available connections) for a connection to be returned before
throwing an exception, or -1 to wait indefinitely.
|