jdk/src/share/classes/javax/sql/PooledConnection.java
changeset 21278 ef8a3a2a72f2
parent 14342 8435a30053c1
child 23010 6dadb192ad81
equal deleted inserted replaced
21277:bd380b80f9ea 21278:ef8a3a2a72f2
    71  * calls the <code>PooledConnection</code> method <code>close</code>.
    71  * calls the <code>PooledConnection</code> method <code>close</code>.
    72  * This method is generally called to have an orderly shutdown of the server or
    72  * This method is generally called to have an orderly shutdown of the server or
    73  * if a fatal error has made the connection unusable.
    73  * if a fatal error has made the connection unusable.
    74  *
    74  *
    75  * <p>
    75  * <p>
    76  * A connection pool manager is often also a statement pool manager, maintining
    76  * A connection pool manager is often also a statement pool manager, maintaining
    77  *  a pool of <code>PreparedStatement</code> objects.
    77  *  a pool of <code>PreparedStatement</code> objects.
    78  *  When an application closes a prepared statement, it calls the
    78  *  When an application closes a prepared statement, it calls the
    79  *  <code>PreparedStatement</code>
    79  *  <code>PreparedStatement</code>
    80  * method <code>close</code>. When <code>Statement</code> pooling is being done,
    80  * method <code>close</code>. When <code>Statement</code> pooling is being done,
    81  * the pool manager is notified because it has registered itself as
    81  * the pool manager is notified because it has registered itself as