Mega Code Archive

 
Categories / Java Tutorial / Database
 

What is JDBC

JDBC is a set of programming APIs that allows easy connection to a wide range of databases (especially relational databases) through Java programs. (JDBC Recipes: A Problem-Solution Approach by Mahmoud Parsian Apress 2005) The following are core JDBC classes, interfaces, and exceptions in the java.sql package: DriverManager Connection Statement PreparedStatement CallableStatement ResultSet SQLException