|
Interface Summary |
| BatchUpdateHandler |
This interface is used as a callback mechanism for handling results coming
out of a batch query. |
| DatabaseConnection |
This interface represents a connection to a database server, although in
reality this is probably more than one connection (probably a pool of them). |
| DatabaseServer |
This interface represents a database server and exposes methods for
inspecting the servers characteristics and establishing a
DatabaseConnection to it. |
| DatabaseServerType |
This interface represents a type (MySQL, PostgreSQL, etc...) of database,
with methods used for helping you adapt to this particular server's dialect
of SQL |
| DatabaseTransaction |
Representing a ongoing database transaction. |
| DataSourceCloser |
This interface is used for closing a DataSource. |
| DataSourceFactory |
This interface is used by a DatabaseServer to construct a DataSource from its configuration. |
| ExecuteResultHandler |
This interface is used to handle results when executing custom SQL code. |
| JDBCDriverDescriptor |
This interface describes a JDBC driver and how to use it. |
| SQLDialect |
This class contains methods to assist you in formatting SQL queries adjusted
to the target database type |
| SQLExecutor |
The SQLExecutor is the object sending the query to the remote database server
and using a callback interface to process the result. |