com.quadcap.jdbc |
This package contains the implementation of the QED JDBC 2.0 Driver.
|
Java Source File Name | Type | Comment |
Connection.java | Class | This class implements the java.sql.Connection interface,
which provides facilities for executing SQL statements, performing
transaction commit and rollback, and obtaining information about
the database via DatabaseMetaData . |
DatabaseMetaData.java | Class | This class implements the java.sql.DatabaseMetaData interface,
which provides a way for the JDBC application to determine which features
a database supports and also a way to explore the database schema, through
information analagous to the SQL "INFORMATION_SCHEMA". |
JdbcDriver.java | Class | This class implements the java.sql.Driver interface,
which provides a basic mechanism for establishing connections to
a QED database. |
MultiDriver.java | Class | This class implements a JDBC driver wrapper which uses a custom
classloader to load a QED driver from a different (generally a previous
version) QED version. |
PreparedStatement.java | Class | This class implements the java.sql.PreparedStatement
interface, and provides facilities for execution of pre-compiled
SQL statements. |
ResultSet.java | Class | This class implements the java.sql.ResultSet interface,
and provides facilities for accessing the results of a SQL query. |
ResultSetMetaData.java | Class | This class implements the java.sql.ResultSetMetaData
interface, which provides a mechanism to obtain information about
the columns in a ResultSet object. |
Statement.java | Class | This class implements the java.sql.Statement interface, which
provides facilities for executing SQL statements on a database
connection, as part of that connection's transaction. |