nath
nath

Reputation: 2848

JDBC Connection pooling

Currently Im looking for a library which provide connection pooling for JDBC. My application is a real-time one. So the connection pooling should support high concurrency. And I also want it to support for both MySQL and Oracle. I looked in to Apache DBCP,and Tomcat JDBC Connection Pool. But it seems they wont suit for my requirement. Is there any other options available?

Upvotes: 0

Views: 897

Answers (1)

Joe
Joe

Reputation: 1023

You can look at the Oracle Universal Connection Pool. It was reviewed here though: How good is Oracle Universal Connection Pool (UCP).

I've used it before connecting to both Oracle and MySQL instances on large server farms in a large scale multithreaded application and it performed okay, no different that with Apache DBCP.

Upvotes: 1

Related Questions