
# javax.sql.PooledConnection
javax.sql.PooledConnection是由连接池创建的连接接口。
表1对javax.sql.PooledConnection的支持情况 
| 方法名                                                             | 返回值类型      | 支持JDBC 4 |
|:---|:---|:---|
| addConnectionEventListener(ConnectionEventListener listener)    | void       | Yes      |
| close()                                                         | void       | Yes      |
| getConnection()                                                 | Connection | Yes      |
| removeConnectionEventListener(ConnectionEventListener listener) | void       | Yes      |
   
