JDBC Interfaces
The Reality SQL/JDBC driver implementation is a subset of Java interfaces and classes defined by the Java 2 Platform, Standard Edition, v1.2.2 API Specification, which incorporates the JDBC 2.0 Core API Specification. The driver implements the following interfaces:
java.sql.Driver
inRealSQLDriver
java.sql.DatabaseMetaData
inRealSQLDatabaseMetaData
java.sql.ResultSetMetaData
inRealSQLResultSetMetaData
java.sql.Connection
inRealSQLConnection
java.sql.ResultSet
inRealSQLResultSet
java.sql.Statement
inRealSQLStatement
java.sql.PreparedStatement
inRealSQLPreparedStatement
java.sql.CallableStatement
inRealSQLCallableStatement
For a complete description of the interfaces, classes and methods in the
java.sql
package, please refer to Sun's JDBC website:
http://java.sun.com/products/jdk/1.2/docs/guide/jdbc/index.html
.
The JavaDocs for the REALITY SQL/JDBC classes show which methods in the
java.sql
interfaces are supported. If you call a method that is not supported,
an SQLException is thrown.