Using the JDBC Interfaces
Go Up to Developing InterClient Programs
The JDBC API is a set of Java interfaces that allow database applications to open connections to a database, execute SQL statements, and process the results. These include:
|
Loads the specific drivers and supports creating new database connections. |
|
Represents a connection to a specific database. |
|
Allows the application to execute a SQL statement. |
|
Represents a pre-compiled SQL statement. The following methods have been implemented:
|
|
Represents a call to a stored procedure in the database. |
|
Controls access to the rows resulting from a statement execution. The following methods have been implemented:
|