Home |
Previous Page | Next Page The IBM Informix JDBC Driver >
The JDBC 1.0 API consists of
the following Java classes and interfaces that you can use to open
connections to particular databases, execute SQL statements,
and process the results.
- Classes
- Interfaces
- java.sql.DataTruncation
- java.sql.CallableStatement
- java.sql.Date
- java.sql.Connection
- java.sql.DriverManager
- java.sql.DatabaseMetaData
- java.sql.DriverPropertyInfo
- java.sql.Driver
- java.sql.SQLException
- java.sql.PreparedStatement
- java.sql.SQLWarning
- java.sql.ResultSet
- java.sql.Time
- java.sql.ResultSetMetaData
- java.sql.Timestamp
- java.sql.Statement
- java.sql.Types
- None
The following JDBC 1.0 classes and interfaces are the most
important for the development of UDRs in Java code:
- java.sql.DriverManager handles loading
of drivers and provides support for creating new database connections.
- java.sql.Connection represents a connection
to a particular database.
- java.sql.Statement acts as a container
for executing an SQL statement on a given connection.
- java.sql.ResultSet controls access to
the row results of a given statement.
- java.sql.PreparedStatement handles execution
of a pre-compiled SQL statement.
- java.sql.CallableStatement handles execution
of a call to a database SPL routine.
For more documentation, refer to the JavaSoft Web site at:
http://java.sun.com
Home |
[ Top of Page | Previous Page | Next Page | Contents |
Index ]