Connection Pooling in Java SE?

connection-pooling, java

Solution

I would suggest c3p0. There is also this other question which discusses c3p0 vs DBCP and several stand-alone connection pools.

Problem

It is hard to find a resource on this without finding Java EE, but here is what I am looking for: All I have is a standard Java SE app, it makes a lot of DB connections. I simply need to make use of a connection pool. Any suggestions?

Original source

Related problems