![]() |
|
Version: 0.27 - Last update: 2004-05-30 | Home Page - SourceForge Project Page - Contact |
Jodd Overview News Download License References Development Using Jodd Javadoc JUnit report Community Contribute Report a bug More reading Milestone 0.30 ![]() ![]() |
ConnectionPoolThere is nothing much to say about database connection pools - they should be used. ThereforeConnectionPool represent a generic
database connection pool interface. The same package also contains a few
implementations of this interface:
Each of these pool implementations has its own way of initialization. Therefore, once a ConnectionPool object is instanced, it has to be
populated with the required data. After that, init() method of pool
object can be called to initialize the pool. When pool is not needed any more
it should be closed with close() method.Here is an example of standard initialization of a connection pool.
The behaviour of the pool depends on specific implementation. |