Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which JDBC connection pool library should I use for a new application project (not web application)?

  • Apache DBCP has enough unresolved issues which are pushed until 2.0 I think.
  • C3P0 development seems to be stopped.
  • And both of them looks relatively slow.
  • Proxool is dead.
  • DBPool has almost no community (at least I've found no public one - no forums, no mailing lists...)
  • Apache Tomcat Pool looks to be unusable without Tomcat
  • I've found SQL Datasources article at Oracle website, but it seems, that it can be applied only to applets running in containers like servlets and web services.

Should I choose BoneCP may be? I don't have any huge requirements. I just need a good and easy to use database connection pool, that is in active development. Library, whose author can respond to bug reports, answer some specific question etc.

BTW, actually, I'm using MySQL only. I've found, that MySQL driver supports DriverManager interface, but I'm unsure if it actually pools connections or not.

share|improve this question
6  
Why does "Apache Tomcat Pool look to be unusable without Tomcat"? You can download it as a separate module. And as far as I understood it, it is intended to be used outside of Tomcat as well. – a_horse_with_no_name Mar 29 '12 at 20:56
1  
c3p0 has resurrected, and is pretty active atm (github.com/swaldman/c3p0) – Aleksander Blomskøld Jun 26 '12 at 10:10
1  
Tomcat's connection pool is definitely usable outside of Tomcat. – matt b Oct 2 '12 at 17:12

2 Answers

up vote 31 down vote accepted
+50

You've done good research. I'd say, go ahead with BoneCP. Some years ago I would have suggested c3p0, but it has currently some open and unresolved issues as well. Too bad, actually. The BoneCP author is by the way also active here at SO.

share|improve this answer

It is possible use Tomcat Connection Pool without Tomcat, it is just a couple of .jars that you can include to any software. I have successfully used Tomcat Connection Pool with Resin and Jetty application servers.

share|improve this answer
2  
Yes, this seem to be correct: ci.apache.org/projects/tomcat/tomcat7/docs/… – FractalizeR Mar 30 '12 at 6:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.