I recently came across this connection pool implementation.
http://people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html
I find it quite interesting.
Did anyone try this out? I think it looks great except the fact that it does not support automatic retry and statement cache like c3p0.
Does anyone one know how it compares to c3p0?
Till now I used c3p0 but I find it's connection handling in a multi-thread environment problematic. It opens way too much connections compared to number of application threads.
Thanks.