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.

link|improve this question

36% accept rate
What database are you using? – shady Oct 18 '10 at 19:08
Hi user32262 did you solve your problem? I need the same information. Start to dig on stackoverflow but no success. – Castanho Mar 22 '11 at 12:12
feedback

2 Answers

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

link|improve this answer
feedback

I was searching for this issue too and could collect what I need from:

org.apache.commons.dbcp.BasicDataSource

If you are using Spring is so easy to inject this information on your bean and retreive what you need from this object, that shall came injected and already instantiated for you.

Any questions let me know!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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