Attributes Summary |
minimumPoolSize : int | The minimum number of connections to maintain in the pool.
|
maximumPoolSize : int | The maximum number of connections to maintain in the pool.
|
connectionTimeout : int | Number of milliseconds after which a connection request is determined to have timed out and a ResourceAllocationException is thrown.
|
idleTimeout : int | The maximum number of seconds that an idle (unallocated) connection can remain in the pool before being removed to free resources.
|
orphanTimeout : int | The maximum number of seconds that an application can hold a connection without using it before the connection is returned to the pool.
|
statementCacheSize : int | Maximum number of prepared statements to cache for the DataSource; this limit is shared among all connections; default value is 10.
|
disableAutoConnectionCleanup : boolean | Tells the connection pooling software not to automatically close connections from this datasource at the end of a transaction.
|