public class ConnectionFactoryNotPooledImpl extends ConnectionFactoryAbstractImpl
Constructor and Description |
---|
ConnectionFactoryNotPooledImpl() |
Modifier and Type | Method and Description |
---|---|
java.sql.Connection |
checkOutJdbcConnection(JdbcConnectionDescriptor jcd)
Returns a valid JDBC Connection.
|
void |
releaseJdbcConnection(JdbcConnectionDescriptor jcd,
java.sql.Connection con)
Releases a Connection after use.
|
lookupConnection, releaseAllResources, releaseConnection
public java.sql.Connection checkOutJdbcConnection(JdbcConnectionDescriptor jcd) throws LookupException
ConnectionFactoryAbstractImpl
Note: This method is never called for a jdbc-connection-descriptor that uses datasources, OJB only manages connections from DriverManager.
Note: If the concrete implementation does not callback to
ConnectionFactoryAbstractImpl.newConnectionFromDriverManager(org.apache.ojb.broker.metadata.JdbcConnectionDescriptor)
when creating a new Connection, it must call
ConnectionFactoryAbstractImpl.initializeJdbcConnection(java.sql.Connection, org.apache.ojb.broker.metadata.JdbcConnectionDescriptor)
so that the platform implementation can peform any RDBMS-specific init tasks for newly
created Connection objetcs.
checkOutJdbcConnection
in class ConnectionFactoryAbstractImpl
jcd
- the connection descriptor for which to return a validated ConnectionLookupException
- if a valid Connection could not be obtainedpublic void releaseJdbcConnection(JdbcConnectionDescriptor jcd, java.sql.Connection con) throws LookupException
ConnectionFactoryAbstractImpl
Note: This method is never called for a jdbc-connection-descriptor that uses datasources, OJB only manages connections from DriverManager.
releaseJdbcConnection
in class ConnectionFactoryAbstractImpl
jcd
- the connection descriptor for which the connection was createdcon
- the connection to release.
Callers must guarantee that the passed connection was obtained by calling
ConnectionFactoryAbstractImpl.checkOutJdbcConnection(org.apache.ojb.broker.metadata.JdbcConnectionDescriptor)
.LookupException
- if errors occured during release of object. Typically happens
if return of object to pool fails in a pooled implementation.(C) 2002 - 2005 Apache Software Foundation
All rights reserved. Published under the Apache License 2.0.
http://db.apache.org/ojb
Version: 1.0.4, 2005-12-30