Subject Re: [Firebird-Java] Connection Pooling
Author Roman Rokytskyy
> Sorry for such a simple question but if I am using J2SE 1.4 what is
> the most efficient (i.e. simplest) way to use the connection pool? I
> am currently using my own pool and wanted to try out the JayBird
> pool. FBConnectionPoolDataSource? FBWrappingDataSource? I'm a little
> confused by all the options.

FBConnectionPoolDataSource is an implementation of the
javax.sql.ConnectionPoolDataSource. FBWrappingDataSource is a wrapper around
FBConnectionPoolDataSource and implements javax.sql.DataSource interface.

If you do not know what is ConnectionPoolDataSource and DataSource
interfaces, take the FBWrappingDataSource - it is a bit easier to use. See
the DataSource.java example how to use it.

Roman