public interface

ConnectionHandle

org.springframework.jdbc.datasource.ConnectionHandle
Known Indirect Subclasses

Class Overview

Simple interface to be implemented by handles for a JDBC Connection. Used by JdoDialect, for example.

Summary

Public Methods
abstract Connection getConnection()
Fetch the JDBC Connection that this handle refers to.
abstract void releaseConnection(Connection con)
Release the JDBC Connection that this handle refers to.

Public Methods

public abstract Connection getConnection ()

Fetch the JDBC Connection that this handle refers to.

public abstract void releaseConnection (Connection con)

Release the JDBC Connection that this handle refers to.

Parameters
con the JDBC Connection to release