Archive for 'Uncategorized' Category

JDBC Code Examples

11 October 2006

 
Accessing Databases with JDBC

JDBC has two parts: the JDBC Core Application Programming Interface (API) and the JDBC Optional Package API.

The java.sql Package
The java.sql package provides the API for accessing and processing data in a data source. The most important members of the java.sql package are as follows:
• The DriverManager class
• The Driver interface
• The Connection […]

No Comments »