Connection
that will be returned from PooledConnectionImpl.getConnection()
. Most methods are wrappers around the jdbc 1.x Connection
. A few exceptions include preparedStatement and close. In accordance with the jdbc specification this Connection cannot be used after closed() is called. Any further usage will result in an SQLException. ConnectionImpl extends DelegatingConnection to enable access to the underlying connection.
@author John D. McNally
@since 2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|