JDBC TUTORIAL
What is JDBC? A JDBC driver is a software component enabling a Java application to interact with a database.It is a specification that tells vendor how to write a driver program to interface java program with their database. The JDBC driver gives out the connection to the database and implements the protocol for transferring the query and result between client and database. JDBC helps you to write Java applications that manage these three programming activities: 1. Connect to a data source, like a database 2. Send queries and update statements to the database 3. Retrieve and process the results received from the database in answer to your query What are we going to cover in this tutorial?? * JDBC Architecture * Types Of JDBC Drivers * Steps to connect to Database using JDBC * JDBC Implementation program *JD BC Metadata * JDBC Statements with Exampl