Please consider adding a getOpenCursors() or some such from the jdbc connection

From: joseph howard <marinetteman(at)gmail(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Please consider adding a getOpenCursors() or some such from the jdbc connection
Date: 2017-01-31 15:38:47
Message-ID: CAK4aF9qPsO+qSzBkpnqHXtbZJtcJo38M4UaHie5yXHY2=ScfHw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

All, One of the most annoying things about working in Java is finding open
cursors and cursor leaks as a user. Since I do not have production access,
nor can I run a query in tandem with the supplied compiled code, the best
choice is to query the jdbc drive in the appserver for the cursors.

The postgresql JDBC driver should report the number of open current cursors
on the connect. I can set holdability on a JDBC cursor, but I cannot get
the open cursor count.

In general, a parent object (e.g. connection as a factory) should
either retain a countable (or iterative) reference list of all objects that
are created, or allocate the object references to the observer/manager.

Thanks

Joe

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2017-01-31 15:47:10 Re: Please consider adding a getOpenCursors() or some such from the jdbc connection
Previous Message Christopher BROWN 2017-01-26 15:50:21 JDBC Array and PostgreSQL driver