| java.lang.Object org.springframework.jdbc.datasource.SimpleConnectionHandle
SimpleConnectionHandle | public class SimpleConnectionHandle implements ConnectionHandle(Code) | | Simple implementation of the ConnectionHandle interface,
containing a given JDBC Connection.
author: Juergen Hoeller since: 1.1 |
SimpleConnectionHandle | public SimpleConnectionHandle(Connection connection)(Code) | | Create a new SimpleConnectionHandle for the given Connection.
Parameters: connection - the JDBC Connection |
getConnection | public Connection getConnection()(Code) | | Return the specified Connection as-is.
|
releaseConnection | public void releaseConnection(Connection con)(Code) | | This implementation is empty, as we're using a standard
Connection handle that does not have to be released.
|
|
|