views:

62

answers:

1

Hi,

We use database connection pooling for our java application. It is a web app run under tomcat.

I want to view live connections in the pool as they are created and destroyed. Can somebody please help?

UPDATE: We are using Oracle 11g. We use DDConnectionBroker library for connection pooling.

A: 

I am not sure if there are any connection monitoring API's in DDConnectionBroker library... I would recommend Proxool if you want more transparency.

http://proxool.sourceforge.net/

Also check out DBCP and CP30, DBCP is the best in the bucket

http://www.java2s.com/Product/Java/Database/Connection-Pool.htm

Faheem