An implementation of.ResourceFactory that manages JDBC connections
See: Description
Class Summary | |
---|---|
AlreadyClosedException | Thrown if the close() method is called on an object that is already closed |
CallableStatementWrapper | The interface used to execute SQL stored procedures. |
ConnectionWrapper |
A wrapper for java.sql.Connection objects. The contract with JDBC says that result sets must be closed before statements and statements must be closed before connections but java does not enforce this contract. |
DatabaseMetaDataWrapper | Wrapper for DatabaseMetaData |
JDBCResourceFactory | A ResourceFactory for JDBC connections |
PreparedStatementWrapper | A wrapper for a PreparedStatement |
ResultSetWrapper | A table of data representing a database result set, which is usually generated by executing a statement that queries the database. |
StatementWrapper |
The object used for executing a static SQL statement and obtaining the results produced by it. |