|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConnectionHandle | |
org.springframework.jdbc.datasource | Provides a utility class for easy DataSource access, a PlatformTransactionManager for a single DataSource, and various simple DataSource implementations. |
org.springframework.orm.jdo | Package providing integration of JDO with Spring concepts. |
Uses of ConnectionHandle in org.springframework.jdbc.datasource |
Classes in org.springframework.jdbc.datasource that implement ConnectionHandle | |
class |
SimpleConnectionHandle
Simple implementation of the ConnectionHandle interface, containing a given JDBC Connection. |
Methods in org.springframework.jdbc.datasource that return ConnectionHandle | |
ConnectionHandle |
ConnectionHolder.getConnectionHandle()
|
Constructors in org.springframework.jdbc.datasource with parameters of type ConnectionHandle | |
ConnectionHolder(ConnectionHandle connectionHandle)
|
Uses of ConnectionHandle in org.springframework.orm.jdo |
Methods in org.springframework.orm.jdo that return ConnectionHandle | |
ConnectionHandle |
DefaultJdoDialect.getJdbcConnection(javax.jdo.PersistenceManager pm,
boolean readOnly)
This implementation returns null, to indicate that JDBC Connection retrieval is not supported. |
ConnectionHandle |
JdoDialect.getJdbcConnection(javax.jdo.PersistenceManager pm,
boolean readOnly)
Retrieve the JDBC Connection that the given JDO PersistenceManager uses underneath, if accessing a relational database. |
Methods in org.springframework.orm.jdo with parameters of type ConnectionHandle | |
void |
DefaultJdoDialect.releaseJdbcConnection(ConnectionHandle conHandle,
javax.jdo.PersistenceManager pm)
This implementation does nothing, assuming that the Connection will implicitly be closed with the PersistenceManager. |
void |
JdoDialect.releaseJdbcConnection(ConnectionHandle conHandle,
javax.jdo.PersistenceManager pm)
Release the given JDBC Connection, which has originally been retrieved via getJdbcConnection . |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |