Thread: Connection Pooling

Connection Pooling

From
Sean Alphonse
Date:
 
Does the JDBC driver support connection pooling?
 
If so, where is the documentation for this, including examples.
 
Thank-you for your time.
 
Sean Alphonse.

Re: Connection Pooling

From
Doug McNaught
Date:
Sean Alphonse <salphonse@shaw.ca> writes:

>  
> Does the JDBC driver support connection pooling?

No.  But there are several packages available that will pool
connections for you above the driver level.  You might check over on
the pgsql-jdbc list and see what people are using there.

Or Google for 'jdbc connection pool' and you'll probably find some. 

-Doug
-- 
Let us cross over the river, and rest under the shade of the trees.  --T. J. Jackson, 1863


Re: Connection Pooling

From
"Mark Pritchard"
Date:
Connection pooling isn't a driver function.

You may:

* get it for free (j2ee container, commercial servlet/application server
etc)

* write it yourself (its not too hard)

* Download one from the 'net. PoolMan is a good example...Google is your
best bet for locating one.

http://www.google.com/search?sourceid=navclient&q=jdbc+connection+pool

Cheers,

Mark Pritchard

-----Original Message-----
From: pgsql-hackers-owner@postgresql.org
[mailto:pgsql-hackers-owner@postgresql.org]On Behalf Of Sean Alphonse
Sent: Wednesday, 13 February 2002 4:03 PM
To: pgsql-hackers
Subject: [HACKERS] Connection Pooling



Does the JDBC driver support connection pooling?

If so, where is the documentation for this, including examples.

Thank-you for your time.

Sean Alphonse.