• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

connection pool information in database table

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I want to know if there is/are any tables in database, oracle for instance, which I can query and find the connection pools created and their properties.

Thanks
Bhargavone
 
Bartender
Posts: 1111
Eclipse IDE Oracle VI Editor
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello and welcome to the ranch.

The database will have information on connections, but only as much information as the database cares about, who has the connection, how long it has been open, how long inactive, maybe amount of information transfered (I am only guessing here).

Connection pools are entirely a way in the java to manange the database connection, so the database doesn't even know they exist.

This sort of information isn't avaiable to java really, the database will have administrative tools to dispaly you this information, it may also have methods to allow you to keep track of the history. But this is all completely database vendor specific.
There have been previous threads on here asking similar questions you may want to go and read them, for any further information supplied to them.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic