Alphabetical Index

A B C D E F G H I J L M N O P R S T U V W

A

AbandonedConfig - class org.apache.commons.dbcp.AbandonedConfig
Configuration settings for handling abandoned db connections.
AbandonedObjectPool - class org.apache.commons.dbcp.AbandonedObjectPool
An implementation of a Jakarta-Commons ObjectPool which tracks JDBC connections and can recover abandoned db connections.
Create an ObjectPool which tracks db connections.
AbandonedTrace - class org.apache.commons.dbcp.AbandonedTrace
Tracks db connection usage for recovering and reporting abandoned db connections.
AbandonedTrace() - constructor for class org.apache.commons.dbcp.AbandonedTrace
Create a new AbandonedTrace without config and without doing abandoned tracing.
AbandonedTrace(org.apache.commons.dbcp.AbandonedConfig) - constructor for class org.apache.commons.dbcp.AbandonedTrace
Construct a new AbandonedTrace with no parent object.
AbandonedTrace(org.apache.commons.dbcp.AbandonedTrace) - constructor for class org.apache.commons.dbcp.AbandonedTrace
Construct a new AbandonedTrace with a parent object.
absolute(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
acceptsURL(String) - method in class org.apache.commons.dbcp.PoolingDriver
activateObject(Object) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
activateObject(Object,Object) - method in class org.apache.commons.dbcp.PoolingConnection
My KeyedPoolableObjectFactory method for activating PreparedStatements.
addBatch() - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
addBatch(String) - method in class org.apache.commons.dbcp.DelegatingStatement
addConnectionProperty(String,String) - method in class org.apache.commons.dbcp.BasicDataSource
Add a custom connection property to the set that will be passed to our JDBC driver.
afterLast() - method in class org.apache.commons.dbcp.DelegatingResultSet

B

BasicDataSource - class org.apache.commons.dbcp.BasicDataSource
Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties.
BasicDataSourceFactory - class org.apache.commons.dbcp.BasicDataSourceFactory
JNDI object factory that creates an instance of BasicDataSource that has been configured based on the RefAddr values of the specified Reference, which must match the names and data types of the BasicDataSource bean properties.
beforeFirst() - method in class org.apache.commons.dbcp.DelegatingResultSet
borrowObject() - method in class org.apache.commons.dbcp.AbandonedObjectPool
Get a db connection from the pool.

C

cancel() - method in class org.apache.commons.dbcp.DelegatingStatement
cancelRowUpdates() - method in class org.apache.commons.dbcp.DelegatingResultSet
clear() - method in class org.apache.commons.jocl.JOCLContentHandler
Clears all the values and types in my list.
clear(int) - method in class org.apache.commons.jocl.JOCLContentHandler
Removes the value/type pair at the specified index.
clearBatch() - method in class org.apache.commons.dbcp.DelegatingStatement
clearParameters() - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
clearWarnings() - method in class org.apache.commons.dbcp.DelegatingConnection
clearWarnings() - method in class org.apache.commons.dbcp.DelegatingResultSet
clearWarnings() - method in class org.apache.commons.dbcp.DelegatingStatement
close() - method in class org.apache.commons.dbcp.BasicDataSource
Close and release all connections that are currently stored in the connection pool associated with our data source.
close() - method in class org.apache.commons.dbcp.DelegatingConnection
Closes the underlying connection, and close any Statements that were not explicitly closed.
close() - method in class org.apache.commons.dbcp.DelegatingResultSet
Wrapper for close of ResultSet which removes this result set from being traced then calls close on the original ResultSet.
close() - method in class org.apache.commons.dbcp.DelegatingStatement
Close this DelegatingStatement, and close any ResultSets that were not explicitly closed.
close() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Close pool being maintained by this datasource.
close() - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
Close pool(s) being maintained by this datasource.
close() - method in class org.apache.commons.dbcp.PoolableConnection
Returns me to my pool.
close() - method in class org.apache.commons.dbcp.PoolablePreparedStatement
Return me to my pool.
close() - method in class org.apache.commons.dbcp.PoolingConnection
Close and free all PreparedStatements from my pool, and close my underlying connection.
close() - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
Close pool being maintained by this datasource.
closePool(String) - method in class org.apache.commons.dbcp.PoolingDriver
commit() - method in class org.apache.commons.dbcp.DelegatingConnection
connect(String,Properties) - method in class org.apache.commons.dbcp.PoolingDriver
ConnectionFactory - interface org.apache.commons.dbcp.ConnectionFactory
Abstract factory interface for creating Connections.
ConstructorUtil - class org.apache.commons.jocl.ConstructorUtil
Miscellaneous Constructor related utility functions.
createConnection() - method in class org.apache.commons.dbcp.ConnectionFactory
Create a new Connection in an implementation specific fashion.
createConnection() - method in class org.apache.commons.dbcp.DataSourceConnectionFactory
createConnection() - method in class org.apache.commons.dbcp.DriverConnectionFactory
Create a new Connection in an implementation specific fashion.
createConnection() - method in class org.apache.commons.dbcp.DriverManagerConnectionFactory
Create a new Connection in an implementation specific fashion.
createDataSource(Properties) - static method in class org.apache.commons.dbcp.BasicDataSourceFactory
Creates and configures a BasicDataSource instance based on the given properties.
createStatement() - method in class org.apache.commons.dbcp.DelegatingConnection
createStatement(int,int) - method in class org.apache.commons.dbcp.DelegatingConnection
createStatement(int,int,int) - method in class org.apache.commons.dbcp.DelegatingConnection

D

A DataSource-based implementation of ConnectionFactory.
DataSourceConnectionFactory(DataSource) - constructor for class org.apache.commons.dbcp.DataSourceConnectionFactory
DbcpException - class org.apache.commons.dbcp.DbcpException
Subclass of RuntimeException that can be used to wrap a SQLException using the "root cause" pattern of JDK 1.4 exceptions, but without requiring a 1.4 runtime environment.
DbcpException() - constructor for class org.apache.commons.dbcp.DbcpException
Construct a new runtime exception with null as its detail message.
DbcpException(String) - constructor for class org.apache.commons.dbcp.DbcpException
Construct a new runtime exception with the specified detail message.
DbcpException(String,Throwable) - constructor for class org.apache.commons.dbcp.DbcpException
Construct a new runtime exception with the specified detail message and cause.
DbcpException(Throwable) - constructor for class org.apache.commons.dbcp.DbcpException
Construct a new runtime exception with the specified cause and a detail message of (cause == null ? null : cause.toString()).
A base delegating implementation of CallableStatement.
Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.
DelegatingConnection - class org.apache.commons.dbcp.DelegatingConnection
A base delegating implementation of Connection.
DelegatingConnection(Connection) - constructor for class org.apache.commons.dbcp.DelegatingConnection
Create a wrapper for the Connectin which traces this Connection in the AbandonedObjectPool.
Create a wrapper for the Connection which traces the Statements created so that any unclosed Statements can be closed when this Connection is closed.
A base delegating implementation of PreparedStatement.
Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.
DelegatingResultSet - class org.apache.commons.dbcp.DelegatingResultSet
A base delegating implementation of ResultSet.
DelegatingResultSet(Statement,ResultSet) - constructor for class org.apache.commons.dbcp.DelegatingResultSet
Create a wrapper for the ResultSet which traces this ResultSet to the Statement which created it and the code which created it.
DelegatingStatement - class org.apache.commons.dbcp.DelegatingStatement
A base delegating implementation of Statement.
Create a wrapper for the Statement which traces this Statement to the Connection which created it and the code which created it.
deleteRow() - method in class org.apache.commons.dbcp.DelegatingResultSet
destroyObject(Object) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
destroyObject(Object,Object) - method in class org.apache.commons.dbcp.PoolingConnection
My KeyedPoolableObjectFactory method for destroying PreparedStatements.
DriverAdapterCPDS - class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
An adapter for jdbc drivers that do not include an implementation of ConnectionPoolDataSource, but still include a DriverManager implementation.
DriverAdapterCPDS() - constructor for class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Default no-arg constructor for Serialization
DriverConnectionFactory - class org.apache.commons.dbcp.DriverConnectionFactory
A Driver-based implementation of ConnectionFactory.
DriverConnectionFactory(Driver,String,Properties) - constructor for class org.apache.commons.dbcp.DriverConnectionFactory
A DriverManager-based implementation of ConnectionFactory.

E

endElement(String,String,String) - method in class org.apache.commons.jocl.JOCLContentHandler
equals(Object) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
equals(Object) - method in class org.apache.commons.dbcp.DelegatingConnection
equals(Object) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
equals(Object) - method in class org.apache.commons.dbcp.DelegatingResultSet
equals(Object) - method in class org.apache.commons.dbcp.DelegatingStatement
execute() - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
execute(String) - method in class org.apache.commons.dbcp.DelegatingStatement
execute(String,columnIndexes[]) - method in class org.apache.commons.dbcp.DelegatingStatement
execute(String,columnNames[]) - method in class org.apache.commons.dbcp.DelegatingStatement
execute(String,int) - method in class org.apache.commons.dbcp.DelegatingStatement
executeBatch() - method in class org.apache.commons.dbcp.DelegatingStatement
executeQuery() - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
executeQuery(String) - method in class org.apache.commons.dbcp.DelegatingStatement
executeUpdate() - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
executeUpdate(String) - method in class org.apache.commons.dbcp.DelegatingStatement
executeUpdate(String,columnIndexes[]) - method in class org.apache.commons.dbcp.DelegatingStatement
executeUpdate(String,columnNames[]) - method in class org.apache.commons.dbcp.DelegatingStatement
executeUpdate(String,int) - method in class org.apache.commons.dbcp.DelegatingStatement

F

findColumn(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
first() - method in class org.apache.commons.dbcp.DelegatingResultSet

G

getArray(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getArray(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getArray(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getArray(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getAsciiStream(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getAsciiStream(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getAutoCommit() - method in class org.apache.commons.dbcp.DelegatingConnection
getBigDecimal(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBigDecimal(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBigDecimal(int,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBigDecimal(int,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBigDecimal(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBigDecimal(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBigDecimal(String,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBinaryStream(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBinaryStream(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBlob(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBlob(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBlob(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBlob(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBoolean(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBoolean(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBoolean(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBoolean(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getByte(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getByte(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getByte(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getByte(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBytes(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBytes(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getBytes(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getBytes(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getCatalog() - method in class org.apache.commons.dbcp.DelegatingConnection
getCause() - method in class org.apache.commons.dbcp.DbcpException
Return the root cause of this exception (if any).
getCause() - method in class org.apache.commons.dbcp.SQLNestedException
getCharacterStream(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getCharacterStream(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getClob(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getClob(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getClob(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getClob(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getConcurrency() - method in class org.apache.commons.dbcp.DelegatingResultSet
getConnection() - method in class org.apache.commons.dbcp.BasicDataSource
Create (if necessary) and return a connection to the database.
getConnection() - method in class org.apache.commons.dbcp.DelegatingStatement
getConnection() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Attempt to establish a database connection.
getConnection() - method in class org.apache.commons.dbcp.PoolingDataSource
Return a Connection from my pool, according to the contract specified by ObjectPool.borrowObject.
getConnection(String,String) - method in class org.apache.commons.dbcp.BasicDataSource
Create (if necessary) and return a connection to the database.
getConnection(String,String) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Attempt to establish a database connection.
getConnection(String,String) - method in class org.apache.commons.dbcp.PoolingDataSource
Throws UnsupportedOperationException
getConnectionPool(String) - method in class org.apache.commons.dbcp.PoolingDriver
getConnectionPoolDataSource() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the value of connectionPoolDataSource.
getConstructor(Class,Class[]) - static method in class org.apache.commons.jocl.ConstructorUtil
Returns a Constructor for the given method signature, or null if no such Constructor can be found.
getCursorName() - method in class org.apache.commons.dbcp.DelegatingResultSet
getDataSourceName() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the name of the ConnectionPoolDataSource which backs this pool.
getDate(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getDate(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getDate(int,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getDate(int,Calendar) - method in class org.apache.commons.dbcp.DelegatingResultSet
getDate(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getDate(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getDate(String,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getDate(String,Calendar) - method in class org.apache.commons.dbcp.DelegatingResultSet
getDefaultAutoCommit() - method in class org.apache.commons.dbcp.BasicDataSource
getDefaultCatalog() - method in class org.apache.commons.dbcp.BasicDataSource
getDefaultMaxActive() - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can be allocated from this pool at the same time, or zero for no limit.
getDefaultMaxIdle() - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or zero for no limit.
getDefaultMaxWait() - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely.
getDefaultReadOnly() - method in class org.apache.commons.dbcp.BasicDataSource
getDefaultTransactionIsolation() - method in class org.apache.commons.dbcp.BasicDataSource
getDefaultTransactionIsolation() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the value of defaultTransactionIsolation, which defines the state of connections handed out from this pool.
getDelegate() - method in class org.apache.commons.dbcp.DelegatingConnection
Returns my underlying Connection.
getDelegate() - method in class org.apache.commons.dbcp.DelegatingResultSet
getDelegate() - method in class org.apache.commons.dbcp.DelegatingStatement
Returns my underlying Statement.
getDescription() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Get the value of description.
getDescription() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the description.
getDouble(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getDouble(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getDouble(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getDouble(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getDriver() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Get the driver classname.
getDriverClassName() - method in class org.apache.commons.dbcp.BasicDataSource
getFetchDirection() - method in class org.apache.commons.dbcp.DelegatingResultSet
getFetchDirection() - method in class org.apache.commons.dbcp.DelegatingStatement
getFetchSize() - method in class org.apache.commons.dbcp.DelegatingResultSet
getFetchSize() - method in class org.apache.commons.dbcp.DelegatingStatement
getFloat(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getFloat(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getFloat(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getFloat(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getGeneratedKeys() - method in class org.apache.commons.dbcp.DelegatingStatement
getHoldability() - method in class org.apache.commons.dbcp.DelegatingConnection
getInitialSize() - method in class org.apache.commons.dbcp.BasicDataSource
getInnermostDelegate() - method in class org.apache.commons.dbcp.DelegatingConnection
If my underlying Connection is not a DelegatingConnection, returns it, otherwise recursively invokes this method on my delegate.
getInnermostDelegate() - method in class org.apache.commons.dbcp.DelegatingResultSet
If my underlying ResultSet is not a DelegatingResultSet, returns it, otherwise recursively invokes this method on my delegate.
getInnermostDelegate() - method in class org.apache.commons.dbcp.DelegatingStatement
If my underlying Statement is not a DelegatingStatement, returns it, otherwise recursively invokes this method on my delegate.
getInt(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getInt(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getInt(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getInt(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getJndiEnvironment(String) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the value of jndiEnvironment which is used when instantiating a jndi InitialContext.
getLogAbandoned() - method in class org.apache.commons.dbcp.AbandonedConfig
Flag to log stack traces for application code which abandoned a Statement or Connection.
getLogAbandoned() - method in class org.apache.commons.dbcp.BasicDataSource
Flag to log stack traces for application code which abandoned a Statement or Connection.
getLoginTimeout() - method in class org.apache.commons.dbcp.BasicDataSource
Return the login timeout (in seconds) for connecting to the database.
getLoginTimeout() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLoginTimeout() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the value of loginTimeout.
getLoginTimeout() - method in class org.apache.commons.dbcp.PoolingDataSource
Throws UnsupportedOperationException.
getLogWriter() - method in class org.apache.commons.dbcp.BasicDataSource
Return the log writer being used by this data source.
getLogWriter() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Get the log writer for this data source.
getLogWriter() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the value of logWriter.
getLogWriter() - method in class org.apache.commons.dbcp.PoolingDataSource
Returns my log writer.
getLong(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getLong(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getLong(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getLong(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getMajorVersion() - method in class org.apache.commons.dbcp.PoolingDriver
getMaxActive() - method in class org.apache.commons.dbcp.BasicDataSource
getMaxActive() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
The maximum number of active statements that can be allocated from this pool at the same time, or zero for no limit.
getMaxActive() - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
The maximum number of active connections that can be allocated from this pool at the same time, or zero for no limit.
getMaxFieldSize() - method in class org.apache.commons.dbcp.DelegatingStatement
getMaxIdle() - method in class org.apache.commons.dbcp.BasicDataSource
getMaxIdle() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
The maximum number of statements that can remain idle in the pool, without extra ones being released, or zero for no limit.
getMaxIdle() - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or zero for no limit.
getMaxOpenPreparedStatements() - method in class org.apache.commons.dbcp.BasicDataSource
getMaxRows() - method in class org.apache.commons.dbcp.DelegatingStatement
getMaxWait() - method in class org.apache.commons.dbcp.BasicDataSource
getMaxWait() - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely.
getMetaData() - method in class org.apache.commons.dbcp.DelegatingConnection
getMetaData() - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
getMetaData() - method in class org.apache.commons.dbcp.DelegatingResultSet
getMinEvictableIdleTimeMillis() - method in class org.apache.commons.dbcp.BasicDataSource
getMinEvictableIdleTimeMillis() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Returns the minimum amount of time a statement may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any).
getMinEvictableIdleTimeMillis() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Returns the minimum amount of time an object may sit idle in the pool before it is eligable for eviction by the idle object evictor (if any).
getMinIdle() - method in class org.apache.commons.dbcp.BasicDataSource
getMinorVersion() - method in class org.apache.commons.dbcp.PoolingDriver
getMoreResults() - method in class org.apache.commons.dbcp.DelegatingStatement
getMoreResults(int) - method in class org.apache.commons.dbcp.DelegatingStatement
getNumActive() - method in class org.apache.commons.dbcp.BasicDataSource
[Read Only] The current number of active connections that have been allocated from this data source.
getNumActive() - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
Get the number of active connections in the default pool.
getNumActive() - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
Get the number of active connections in the pool.
getNumActive(String,String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
Get the number of active connections in the pool for a given user.
getNumIdle() - method in class org.apache.commons.dbcp.BasicDataSource
[Read Only] The current number of idle connections that are waiting to be allocated from this data source.
getNumIdle() - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
Get the number of idle connections in the default pool.
getNumIdle() - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
Get the number of idle connections in the pool.
getNumIdle(String,String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
Get the number of idle connections in the pool for a given user.
getNumTestsPerEvictionRun() - method in class org.apache.commons.dbcp.BasicDataSource
getNumTestsPerEvictionRun() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Returns the number of statements to examine during each run of the idle object evictor thread (if any).
getNumTestsPerEvictionRun() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Returns the number of objects to examine during each run of the idle object evictor thread (if any).
getObject(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getObject(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getObject(int,Map) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getObject(int,Map) - method in class org.apache.commons.dbcp.DelegatingResultSet
getObject(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getObject(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getObject(String,Map) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getObject(String,Map) - method in class org.apache.commons.dbcp.DelegatingResultSet
Create and return a new BasicDataSource instance.
getObjectInstance(Object,Name,Context,Hashtable) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
implements ObjectFactory to create an instance of this class
getParameterMetaData() - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
getPassword() - method in class org.apache.commons.dbcp.BasicDataSource
getPassword() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Get the value of password for the default user.
getPerUserDefaultAutoCommit(String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The keys are usernames and the value is the --.
getPerUserDefaultReadOnly(String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The keys are usernames and the value is the --.
getPerUserDefaultTransactionIsolation(String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The isolation level of connections when returned from getConnection.
getPerUserMaxActive(String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can be allocated from this pool at the same time, or zero for no limit.
getPerUserMaxIdle(String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or zero for no limit.
getPerUserMaxWait(String) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely.
getPool() - method in class org.apache.commons.dbcp.PoolableConnectionFactory
getPool(String) - method in class org.apache.commons.dbcp.PoolingDriver
WARNING: This method throws DbcpExceptions (RuntimeExceptions) and will be replaced by the protected getConnectionPool method.
getPooledConnection() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Attempt to establish a database connection using the default user and password.
getPooledConnection(String,String) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Attempt to establish a database connection.
getPoolNames() - method in class org.apache.commons.dbcp.PoolingDriver
getPropertyInfo(String,Properties) - method in class org.apache.commons.dbcp.PoolingDriver
getQueryTimeout() - method in class org.apache.commons.dbcp.DelegatingStatement
getRef(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getRef(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getRef(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getRef(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getReference() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Referenceable implementation.
getReference() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Referenceable implementation prepares object for binding in jndi.
getRemoveAbandoned() - method in class org.apache.commons.dbcp.AbandonedConfig
Flag to remove abandoned connections if they exceed the removeAbandonedTimeout.
getRemoveAbandoned() - method in class org.apache.commons.dbcp.BasicDataSource
Flag to remove abandoned connections if they exceed the removeAbandonedTimout.
getRemoveAbandonedTimeout() - method in class org.apache.commons.dbcp.AbandonedConfig
Timeout in seconds before an abandoned connection can be removed.
getRemoveAbandonedTimeout() - method in class org.apache.commons.dbcp.BasicDataSource
Timeout in seconds before an abandoned connection can be removed.
getResultSet() - method in class org.apache.commons.dbcp.DelegatingStatement
getResultSetConcurrency() - method in class org.apache.commons.dbcp.DelegatingStatement
getResultSetHoldability() - method in class org.apache.commons.dbcp.DelegatingStatement
getResultSetType() - method in class org.apache.commons.dbcp.DelegatingStatement
getRow() - method in class org.apache.commons.dbcp.DelegatingResultSet
getShort(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getShort(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getShort(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getShort(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getStatement() - method in class org.apache.commons.dbcp.DelegatingResultSet
getString(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getString(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getString(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getString(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTestOnBorrow() - method in class org.apache.commons.dbcp.BasicDataSource
getTestOnBorrow() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
When true, objects will be {*link PoolableObjectFactory#validateObject validated} before being returned by the {*link #borrowObject} method.
getTestOnReturn() - method in class org.apache.commons.dbcp.BasicDataSource
getTestOnReturn() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
When true, objects will be {*link PoolableObjectFactory#validateObject validated} before being returned to the pool within the {*link #returnObject}.
getTestWhileIdle() - method in class org.apache.commons.dbcp.BasicDataSource
getTestWhileIdle() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
When true, objects will be {*link PoolableObjectFactory#validateObject validated} by the idle object evictor (if any).
getTime(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTime(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTime(int,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTime(int,Calendar) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTime(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTime(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTime(String,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTime(String,Calendar) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTimeBetweenEvictionRunsMillis() - method in class org.apache.commons.dbcp.BasicDataSource
getTimeBetweenEvictionRunsMillis() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Returns the number of milliseconds to sleep between runs of the idle object evictor thread.
getTimeBetweenEvictionRunsMillis() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Returns the number of milliseconds to sleep between runs of the idle object evictor thread.
getTimestamp(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTimestamp(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTimestamp(int,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTimestamp(int,Calendar) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTimestamp(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTimestamp(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTimestamp(String,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getTimestamp(String,Calendar) - method in class org.apache.commons.dbcp.DelegatingResultSet
getTransactionIsolation() - method in class org.apache.commons.dbcp.DelegatingConnection
getType() - method in class org.apache.commons.dbcp.DelegatingResultSet
getType(int) - method in class org.apache.commons.jocl.JOCLContentHandler
Returns the type of the object at the specified index.
getTypeArray() - method in class org.apache.commons.jocl.JOCLContentHandler
Returns a shallow copy of my list of types.
getTypeMap() - method in class org.apache.commons.dbcp.DelegatingConnection
getUnicodeStream(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getUnicodeStream(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getUpdateCount() - method in class org.apache.commons.dbcp.DelegatingStatement
getUrl() - method in class org.apache.commons.dbcp.BasicDataSource
getUrl() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Get the value of url used to locate the database for this datasource.
getURL(int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getURL(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
getURL(String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
getURL(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
getUser() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Get the value of default user (login or username).
getUsername() - method in class org.apache.commons.dbcp.BasicDataSource
getValidationQuery() - method in class org.apache.commons.dbcp.BasicDataSource
getValidationQuery() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
The SQL query that will be used to validate connections from this pool before returning them to the caller.
getValue(int) - method in class org.apache.commons.jocl.JOCLContentHandler
Returns the value of the object at the specified index.
getValueArray() - method in class org.apache.commons.jocl.JOCLContentHandler
Returns a shallow copy of my list of values.
getWarnings() - method in class org.apache.commons.dbcp.DelegatingConnection
getWarnings() - method in class org.apache.commons.dbcp.DelegatingResultSet
getWarnings() - method in class org.apache.commons.dbcp.DelegatingStatement

H

hashCode() - method in class org.apache.commons.dbcp.DelegatingConnection
hashCode() - method in class org.apache.commons.dbcp.DelegatingResultSet
hashCode() - method in class org.apache.commons.dbcp.DelegatingStatement

I

insertRow() - method in class org.apache.commons.dbcp.DelegatingResultSet
InstanceKeyDataSource - class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
The base class for SharedPoolDataSource and PerUserPoolDataSource.
InstanceKeyDataSource() - constructor for class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Default no-arg constructor for Serialization
invalidateObject(Object) - method in class org.apache.commons.dbcp.AbandonedObjectPool
invokeConstructor(Class,Class[],Object[]) - static method in class org.apache.commons.jocl.ConstructorUtil
Creates a new instance of the specified type using a Constructor described by the given parameter types and values.
isAccessToUnderlyingConnectionAllowed() - method in class org.apache.commons.dbcp.BasicDataSource
Returns the value of the accessToUnderlyingConnectionAllowed property.
isAccessToUnderlyingConnectionAllowed() - method in class org.apache.commons.dbcp.PoolingDataSource
Returns the value of the accessToUnderlyingConnectionAllowed property.
isAccessToUnderlyingConnectionAllowed() - static method in class org.apache.commons.dbcp.PoolingDriver
Returns the value of the accessToUnderlyingConnectionAllowed property.
isAfterLast() - method in class org.apache.commons.dbcp.DelegatingResultSet
isBeforeFirst() - method in class org.apache.commons.dbcp.DelegatingResultSet
isClosed() - method in class org.apache.commons.dbcp.DelegatingConnection
isDefaultAutoCommit() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the value of defaultAutoCommit, which defines the state of connections handed out from this pool.
isDefaultReadOnly() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Get the value of defaultReadOnly, which defines the state of connections handed out from this pool.
isFirst() - method in class org.apache.commons.dbcp.DelegatingResultSet
isLast() - method in class org.apache.commons.dbcp.DelegatingResultSet
isPoolPreparedStatements() - method in class org.apache.commons.dbcp.BasicDataSource
Returns true if we are pooling statements.
isPoolPreparedStatements() - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Flag to toggle the pooling of PreparedStatements
isReadOnly() - method in class org.apache.commons.dbcp.DelegatingConnection
isTestOnBorrow() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
isTestOnReturn() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
isTestWhileIdle() - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource

J

jdbcCompliant() - method in class org.apache.commons.dbcp.PoolingDriver
JOCL_NAMESPACE_URI - static field in class org.apache.commons.jocl.JOCLContentHandler
The JOCL namespace URI, http://apache.org/xml/xmlns/jakarta/commons/jocl.
JOCL_PREFIX - static field in class org.apache.commons.jocl.JOCLContentHandler
The default JOCL prefix, jocl:.
JOCLContentHandler - class org.apache.commons.jocl.JOCLContentHandler
A ContentHandler for the Java Object Configuration Language.
JOCLContentHandler() - constructor for class org.apache.commons.jocl.JOCLContentHandler
JOCLContentHandler(boolean,boolean,boolean,boolean) - constructor for class org.apache.commons.jocl.JOCLContentHandler
Construct a JOCLContentHandler.

L

last() - method in class org.apache.commons.dbcp.DelegatingResultSet

M

main(String[]) - static method in class org.apache.commons.jocl.JOCLContentHandler
A simple tester method.
makeObject() - method in class org.apache.commons.dbcp.PoolableConnectionFactory
makeObject(Object) - method in class org.apache.commons.dbcp.PoolingConnection
My KeyedPoolableObjectFactory method for creating PreparedStatements.
moveToCurrentRow() - method in class org.apache.commons.dbcp.DelegatingResultSet
moveToInsertRow() - method in class org.apache.commons.dbcp.DelegatingResultSet

N

nativeSQL(String) - method in class org.apache.commons.dbcp.DelegatingConnection
next() - method in class org.apache.commons.dbcp.DelegatingResultSet

O

Database Connection Pool API.
This package contains one public class which is a ConnectionPoolDataSource (CPDS) implementation that can be used to adapt older Driver based jdbc implementations.
This package contains two DataSources: PerUserPoolDataSource and SharedPoolDataSource which provide a database connection pool.
Java Object Configuration Language, an XML application for describing Java Objects to be instantiated.

P

parse(File) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified file, using the XMLReader specified by the org.xml.sax.driver property.
parse(File,XMLReader) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified file, using the XMLReader specified by the org.xml.sax.driver property.
parse(InputSource) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified InputSource, using thethe XMLReader specified by the org.xml.sax.driver property.
parse(InputSource,XMLReader) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified InputSource, using the specified XMLReader.
parse(InputStream) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified InputStream, using the XMLReader specified by the org.xml.sax.driver property.
parse(InputStream,XMLReader) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified InputStream, using the specified XMLReader.
parse(Reader) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified Reader, using the XMLReader specified by the org.xml.sax.driver property.
parse(Reader,XMLReader) - static method in class org.apache.commons.jocl.JOCLContentHandler
Parses a JOCL document from the specified Reader, using the specified XMLReader.
passivateObject(Object) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
passivateObject(Object,Object) - method in class org.apache.commons.dbcp.PoolingConnection
My KeyedPoolableObjectFactory method for passivating PreparedStatements.
PerUserPoolDataSource - class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
A pooling DataSource appropriate for deployment within J2EE environment.
PerUserPoolDataSource() - constructor for class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
Default no-arg constructor for Serialization
PerUserPoolDataSourceFactory - class org.apache.commons.dbcp.datasources.PerUserPoolDataSourceFactory
A JNDI ObjectFactory which creates SharedPoolDataSources
PoolableConnection - class org.apache.commons.dbcp.PoolableConnection
A delegating connection that, rather than closing the underlying connection, returns itself to an ObjectPool when closed.
PoolableConnection(Connection,ObjectPool) - constructor for class org.apache.commons.dbcp.PoolableConnection
A PoolableObjectFactory that creates PoolableConnections.
Create a new PoolableConnectionFactory.
Create a new PoolableConnectionFactory.
Create a new PoolableConnectionFactory.
Create a new PoolableConnectionFactory.
Create a new PoolableConnectionFactory.
A DelegatingPreparedStatement that cooperates with PoolingConnection to implement a pool of PreparedStatements.
Constructor
PoolingConnection - class org.apache.commons.dbcp.PoolingConnection
A DelegatingConnection that pools PreparedStatements.
PoolingConnection(Connection) - constructor for class org.apache.commons.dbcp.PoolingConnection
Constructor.
PoolingConnection(Connection,KeyedObjectPool) - constructor for class org.apache.commons.dbcp.PoolingConnection
Constructor.
PoolingDataSource - class org.apache.commons.dbcp.PoolingDataSource
A simple DataSource implementation that obtains Connections from the specified ObjectPool.
PoolingDataSource() - constructor for class org.apache.commons.dbcp.PoolingDataSource
PoolingDataSource(ObjectPool) - constructor for class org.apache.commons.dbcp.PoolingDataSource
PoolingDriver - class org.apache.commons.dbcp.PoolingDriver
A Driver implementation that obtains Connections from a registered ObjectPool.
PoolingDriver() - constructor for class org.apache.commons.dbcp.PoolingDriver
prepareCall(String) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareCall(String,int,int) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareCall(String,int,int,int) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareStatement(String) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareStatement(String) - method in class org.apache.commons.dbcp.PoolingConnection
Create or obtain a PreparedStatement from my pool.
prepareStatement(String,columnIndexes[]) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareStatement(String,columnNames[]) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareStatement(String,int) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareStatement(String,int,int) - method in class org.apache.commons.dbcp.DelegatingConnection
prepareStatement(String,int,int) - method in class org.apache.commons.dbcp.PoolingConnection
Create or obtain a PreparedStatement from my pool.
prepareStatement(String,int,int,int) - method in class org.apache.commons.dbcp.DelegatingConnection
previous() - method in class org.apache.commons.dbcp.DelegatingResultSet
printStackTrace() - method in class org.apache.commons.dbcp.AbandonedTrace
If logAbandoned=true, print a stack trace of the code that created this object.
printStackTrace(PrintStream) - method in class org.apache.commons.dbcp.SQLNestedException
printStackTrace(PrintWriter) - method in class org.apache.commons.dbcp.SQLNestedException

R

reallyClose() - method in class org.apache.commons.dbcp.PoolableConnection
Actually close my underlying Connection.
refreshRow() - method in class org.apache.commons.dbcp.DelegatingResultSet
registerOutParameter(int,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
registerOutParameter(int,int,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
registerOutParameter(int,int,String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
registerOutParameter(String,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
registerOutParameter(String,int,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
registerPool(String,ObjectPool) - method in class org.apache.commons.dbcp.PoolingDriver
relative(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
releaseSavepoint(java.sql.Savepoint) - method in class org.apache.commons.dbcp.DelegatingConnection
removeConnectionProperty(String) - method in class org.apache.commons.dbcp.BasicDataSource
returnObject(Object) - method in class org.apache.commons.dbcp.AbandonedObjectPool
Return a db connection to the pool.
rollback() - method in class org.apache.commons.dbcp.DelegatingConnection
rollback(java.sql.Savepoint) - method in class org.apache.commons.dbcp.DelegatingConnection
rowDeleted() - method in class org.apache.commons.dbcp.DelegatingResultSet
rowInserted() - method in class org.apache.commons.dbcp.DelegatingResultSet
rowUpdated() - method in class org.apache.commons.dbcp.DelegatingResultSet

S

setAccessToUnderlyingConnectionAllowed(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
Sets the value of the accessToUnderlyingConnectionAllowed property.
setAccessToUnderlyingConnectionAllowed(boolean) - method in class org.apache.commons.dbcp.PoolingDataSource
Sets the value of the accessToUnderlyingConnectionAllowed property.
setAccessToUnderlyingConnectionAllowed(boolean) - static method in class org.apache.commons.dbcp.PoolingDriver
Sets the value of the accessToUnderlyingConnectionAllowed property.
setArray(int,Array) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setAutoCommit(boolean) - method in class org.apache.commons.dbcp.DelegatingConnection
setBigDecimal(int,BigDecimal) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setBigDecimal(String,BigDecimal) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setBlob(int,Blob) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setBoolean(int,boolean) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setBoolean(String,boolean) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setByte(int,byte) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setByte(String,byte) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setBytes(int,byte[]) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setBytes(String,byte[]) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setCatalog(String) - method in class org.apache.commons.dbcp.DelegatingConnection
setCharacterStream(String,Reader,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setClob(int,Clob) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
Sets the ConnectionFactory from which to obtain base Connections.
setConnectionPoolDataSource(ConnectionPoolDataSource) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the backend ConnectionPoolDataSource.
setCursorName(String) - method in class org.apache.commons.dbcp.DelegatingStatement
setDataSourceName(String) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the name of the ConnectionPoolDataSource which backs this pool.
setDate(int,java.sql.Date) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setDate(int,java.sql.Date,Calendar) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setDate(String,Date) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setDate(String,Date,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setDefaultAutoCommit(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
setDefaultAutoCommit(boolean) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the value of defaultAutoCommit, which defines the state of connections handed out from this pool.
setDefaultAutoCommit(boolean) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
Sets the default "auto commit" setting for borrowed Connections
setDefaultCatalog(String) - method in class org.apache.commons.dbcp.BasicDataSource
setDefaultCatalog(String) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
Sets the default "catalog" setting for borrowed Connections
setDefaultMaxActive(int) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can be allocated from this pool at the same time, or zero for no limit.
setDefaultMaxIdle(int) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or zero for no limit.
setDefaultMaxWait(int) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely.
setDefaultReadOnly(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
setDefaultReadOnly(boolean) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the value of defaultReadOnly, which defines the state of connections handed out from this pool.
setDefaultReadOnly(boolean) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
Sets the default "read only" setting for borrowed Connections
setDefaultTransactionIsolation(int) - method in class org.apache.commons.dbcp.BasicDataSource
setDefaultTransactionIsolation(int) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the value of defaultTransactionIsolation, which defines the state of connections handed out from this pool.
setDefaultTransactionIsolation(int) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
Sets the default "Transaction Isolation" setting for borrowed Connections
setDelegate(CallableStatement) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
Sets my delegate.
setDelegate(Connection) - method in class org.apache.commons.dbcp.DelegatingConnection
Sets my delegate.
setDelegate(PreparedStatement) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
Sets my delegate.
setDelegate(Statement) - method in class org.apache.commons.dbcp.DelegatingStatement
Sets my delegate.
setDescription(String) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Set the value of description.
setDescription(String) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the description.
setDocumentLocator(Locator) - method in class org.apache.commons.jocl.JOCLContentHandler
setDouble(int,double) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setDouble(String,double) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setDriver(String) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Set the driver classname.
setDriverClassName(String) - method in class org.apache.commons.dbcp.BasicDataSource
setEscapeProcessing(boolean) - method in class org.apache.commons.dbcp.DelegatingStatement
setFetchDirection(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
setFetchDirection(int) - method in class org.apache.commons.dbcp.DelegatingStatement
setFetchSize(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
setFetchSize(int) - method in class org.apache.commons.dbcp.DelegatingStatement
setFloat(int,float) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setFloat(String,float) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setHoldability(int) - method in class org.apache.commons.dbcp.DelegatingConnection
setInitialSize(int) - method in class org.apache.commons.dbcp.BasicDataSource
setInt(int,int) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setInt(String,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setJndiEnvironment(String,String) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the value of jndiEnvironment which is used when instantiating a jndi InitialContext.
setLogAbandoned(boolean) - method in class org.apache.commons.dbcp.AbandonedConfig
Flag to log stack traces for application code which abandoned a Statement or Connection.
setLogAbandoned(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
setLoginTimeout(int) - method in class org.apache.commons.dbcp.BasicDataSource
Set the login timeout (in seconds) for connecting to the database.
setLoginTimeout(int) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLoginTimeout(int) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the value of loginTimeout.
setLoginTimeout(int) - method in class org.apache.commons.dbcp.PoolingDataSource
Throws UnsupportedOperationException.
setLogWriter(java.io.PrintWriter) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Set the log writer for this data source.
setLogWriter(PrintWriter) - method in class org.apache.commons.dbcp.BasicDataSource
Set the log writer being used by this data source.
setLogWriter(PrintWriter) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Set the value of logWriter.
setLogWriter(PrintWriter) - method in class org.apache.commons.dbcp.PoolingDataSource
Sets my log writer.
setLong(int,long) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setLong(String,long) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setMaxActive(int) - method in class org.apache.commons.dbcp.BasicDataSource
setMaxActive(int) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
The maximum number of active statements that can be allocated from this pool at the same time, or zero for no limit.
setMaxActive(int) - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
The maximum number of active connections that can be allocated from this pool at the same time, or zero for no limit.
setMaxFieldSize(int) - method in class org.apache.commons.dbcp.DelegatingStatement
setMaxIdle(int) - method in class org.apache.commons.dbcp.BasicDataSource
setMaxIdle(int) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
The maximum number of statements that can remain idle in the pool, without extra ones being released, or zero for no limit.
setMaxIdle(int) - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or zero for no limit.
setMaxOpenPreparedStatements(int) - method in class org.apache.commons.dbcp.BasicDataSource
setMaxRows(int) - method in class org.apache.commons.dbcp.DelegatingStatement
setMaxWait(int) - method in class org.apache.commons.dbcp.datasources.SharedPoolDataSource
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely.
setMaxWait(long) - method in class org.apache.commons.dbcp.BasicDataSource
setMinEvictableIdleTimeMillis(int) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Sets the minimum amount of time a statement may sit idle in the pool before it is eligable for eviction by the idle object evictor (if any).
setMinEvictableIdleTimeMillis(int) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Sets the minimum amount of time an object may sit idle in the pool before it is eligable for eviction by the idle object evictor (if any).
setMinEvictableIdleTimeMillis(long) - method in class org.apache.commons.dbcp.BasicDataSource
setMinIdle(int) - method in class org.apache.commons.dbcp.BasicDataSource
setNull(int,int) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setNull(int,int,String) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setNull(String,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setNull(String,int,String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setNumTestsPerEvictionRun(int) - method in class org.apache.commons.dbcp.BasicDataSource
setNumTestsPerEvictionRun(int) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Sets the number of statements to examine during each run of the idle object evictor thread (if any).
setNumTestsPerEvictionRun(int) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Sets the number of objects to examine during each run of the idle object evictor thread (if any).
setObject(int,Object) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setObject(int,Object,int) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setObject(int,Object,int,int) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setObject(String,Object) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setObject(String,Object,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setObject(String,Object,int,int) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setPassword(String) - method in class org.apache.commons.dbcp.BasicDataSource
setPassword(String) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Set the value of password for the default user.
setPerUserDefaultAutoCommit(String,Boolean) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The keys are usernames and the value is the --.
setPerUserDefaultReadOnly(String,Boolean) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The keys are usernames and the value is the --.
setPerUserDefaultTransactionIsolation(String,Integer) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The isolation level of connections when returned from getConnection.
setPerUserMaxActive(String,Integer) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can be allocated from this pool at the same time, or zero for no limit.
setPerUserMaxIdle(String,Integer) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of active connections that can remain idle in the pool, without extra ones being released, or zero for no limit.
setPerUserMaxWait(String,Integer) - method in class org.apache.commons.dbcp.datasources.PerUserPoolDataSource
The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception, or -1 to wait indefinitely.
setPool(ObjectPool) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
Sets the ObjectPool in which to pool Connections.
setPool(ObjectPool) - method in class org.apache.commons.dbcp.PoolingDataSource
setPoolPreparedStatements(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
Sets whether to pool statements or not.
setPoolPreparedStatements(boolean) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Flag to toggle the pooling of PreparedStatements
setQueryTimeout(int) - method in class org.apache.commons.dbcp.DelegatingStatement
setReadOnly(boolean) - method in class org.apache.commons.dbcp.DelegatingConnection
setRef(int,Ref) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setRemoveAbandoned(boolean) - method in class org.apache.commons.dbcp.AbandonedConfig
Flag to remove abandoned connections if they exceed the removeAbandonedTimeout.
setRemoveAbandoned(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
setRemoveAbandonedTimeout(int) - method in class org.apache.commons.dbcp.AbandonedConfig
Timeout in seconds before an abandoned connection can be removed.
setRemoveAbandonedTimeout(int) - method in class org.apache.commons.dbcp.BasicDataSource
setSavepoint() - method in class org.apache.commons.dbcp.DelegatingConnection
setSavepoint(String) - method in class org.apache.commons.dbcp.DelegatingConnection
setShort(int,short) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setShort(String,short) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
Sets the KeyedObjectPoolFactory I use to create KeyedObjectPools for pooling PreparedStatements.
setString(int,String) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setString(String,String) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setTestOnBorrow(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
setTestOnBorrow(boolean) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
When true, objects will be {*link PoolableObjectFactory#validateObject validated} before being returned by the {*link #borrowObject} method.
setTestOnReturn(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
setTestOnReturn(boolean) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
When true, objects will be {*link PoolableObjectFactory#validateObject validated} before being returned to the pool within the {*link #returnObject}.
setTestWhileIdle(boolean) - method in class org.apache.commons.dbcp.BasicDataSource
setTestWhileIdle(boolean) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
When true, objects will be {*link PoolableObjectFactory#validateObject validated} by the idle object evictor (if any).
setTime(int,java.sql.Time) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setTime(int,java.sql.Time,Calendar) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setTime(String,Time) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setTime(String,Time,Calendar) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setTimeBetweenEvictionRunsMillis(int) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Sets the number of milliseconds to sleep between runs of the idle object evictor thread.
setTimeBetweenEvictionRunsMillis(int) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
Sets the number of milliseconds to sleep between runs of the idle object evictor thread.
setTimeBetweenEvictionRunsMillis(long) - method in class org.apache.commons.dbcp.BasicDataSource
setTimestamp(int,java.sql.Timestamp) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setTimestamp(String,Timestamp) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setTransactionIsolation(int) - method in class org.apache.commons.dbcp.DelegatingConnection
setTypeMap(Map) - method in class org.apache.commons.dbcp.DelegatingConnection
setURL(int,java.net.URL) - method in class org.apache.commons.dbcp.DelegatingPreparedStatement
setUrl(String) - method in class org.apache.commons.dbcp.BasicDataSource
setUrl(String) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Set the value of url used to locate the database for this datasource.
setURL(String,URL) - method in class org.apache.commons.dbcp.DelegatingCallableStatement
setUser(String) - method in class org.apache.commons.dbcp.cpdsadapter.DriverAdapterCPDS
Set the value of default user (login or username).
setUsername(String) - method in class org.apache.commons.dbcp.BasicDataSource
setValidationQuery(String) - method in class org.apache.commons.dbcp.BasicDataSource
setValidationQuery(String) - method in class org.apache.commons.dbcp.datasources.InstanceKeyDataSource
The SQL query that will be used to validate connections from this pool before returning them to the caller.
setValidationQuery(String) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
Sets the query I use to validate Connections.
SharedPoolDataSource - class org.apache.commons.dbcp.datasources.SharedPoolDataSource
A pooling DataSource appropriate for deployment within J2EE environment.
SharedPoolDataSource() - constructor for class org.apache.commons.dbcp.datasources.SharedPoolDataSource
Default no-arg constructor for Serialization
SharedPoolDataSourceFactory - class org.apache.commons.dbcp.datasources.SharedPoolDataSourceFactory
A JNDI ObjectFactory which creates SharedPoolDataSources
size() - method in class org.apache.commons.jocl.JOCLContentHandler
Returns the number of values and types in my list.
SQLNestedException - class org.apache.commons.dbcp.SQLNestedException
A SQLException subclass containing another Throwable
SQLNestedException(String,Throwable) - constructor for class org.apache.commons.dbcp.SQLNestedException
Constructs a new SQLNestedException with specified detail message and nested Throwable.
startElement(String,String,String,Attributes) - method in class org.apache.commons.jocl.JOCLContentHandler

T

toString() - method in class org.apache.commons.dbcp.DriverConnectionFactory
toString() - method in class org.apache.commons.dbcp.PoolingConnection

U

updateArray(int,java.sql.Array) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateArray(String,java.sql.Array) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateAsciiStream(int,InputStream,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateAsciiStream(String,InputStream,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBigDecimal(int,BigDecimal) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBigDecimal(String,BigDecimal) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBinaryStream(int,InputStream,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBinaryStream(String,InputStream,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBlob(int,java.sql.Blob) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBlob(String,java.sql.Blob) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBoolean(int,boolean) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBoolean(String,boolean) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateByte(int,byte) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateByte(String,byte) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBytes(int,byte[]) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateBytes(String,byte[]) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateCharacterStream(int,Reader,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateCharacterStream(String,Reader,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateClob(int,java.sql.Clob) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateClob(String,java.sql.Clob) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateDate(int,Date) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateDate(String,Date) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateDouble(int,double) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateDouble(String,double) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateFloat(int,float) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateFloat(String,float) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateInt(int,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateInt(String,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateLong(int,long) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateLong(String,long) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateNull(int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateNull(String) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateObject(int,Object) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateObject(int,Object,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateObject(String,Object) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateObject(String,Object,int) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateRef(int,java.sql.Ref) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateRef(String,java.sql.Ref) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateRow() - method in class org.apache.commons.dbcp.DelegatingResultSet
updateShort(int,short) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateShort(String,short) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateString(int,String) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateString(String,String) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateTime(int,Time) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateTime(String,Time) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateTimestamp(int,Timestamp) - method in class org.apache.commons.dbcp.DelegatingResultSet
updateTimestamp(String,Timestamp) - method in class org.apache.commons.dbcp.DelegatingResultSet

V

validateConnection(Connection) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
validateObject(Object) - method in class org.apache.commons.dbcp.PoolableConnectionFactory
validateObject(Object,Object) - method in class org.apache.commons.dbcp.PoolingConnection
My KeyedPoolableObjectFactory method for validating PreparedStatements.

W

wasNull() - method in class org.apache.commons.dbcp.DelegatingCallableStatement
wasNull() - method in class org.apache.commons.dbcp.DelegatingResultSet
wrapResultSet(Statement,ResultSet) - static method in class org.apache.commons.dbcp.DelegatingResultSet

Copyright © 2001-2003 Apache Software Foundation. Documenation generated March 31 2006.