This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
How to retrieve what SQL(s) a java.sql.Connection is running ?
First Light
Greenhorn
Joined: Nov 27, 2000
Posts: 14
posted
0
I've written a custom connection pooling package and I would like to display what each connection in the pool is currently running(Information on the session associated with this connection). I would like to display what SQL(s) this connection is running, how long has it been running and of course handles to those statements so that I can call statement.cancel() to stop them if needed. Some sort of java version of oracletool package which was written in perl. I will appreciate if anybody can offer some suggestions and/or examples. Thanks