104
Java Database Connectivity with 5 Steps
There are 5 steps to connect any java application with the database using JDBC. These steps are as follows:
|
1) Register the driver class
The forName() method of Class class is used to register the driver class. This method is used to dynamically load the driver class. |
Syntax of forName() method
Note: Since JDBC 4.0, explicitly registering the driver is optional. We just need to put vender’s Jar in the classpath, and then JDBC driver manager can detect and load the driver automatically.
Example to register the OracleDriver class
Here, Java program is loading oracle driver to esteblish database connection.
2) Create the connection object
The getConnection() method of DriverManager class is used to establish connection with the database. |
Syntax of getConnection() method
Example to establish connection with the Oracle database
3) Create the Statement object
The createStatement() method of Connection interface is used to create statement. The object of statement is responsible to execute queries with the database. |
Syntax of createStatement() method
Example to create the statement object
4) Execute the query
The executeQuery() method of Statement interface is used to execute queries to the database. This method returns the object of ResultSet that can be used to get all the records of a table. |
Syntax of executeQuery() method
Example to execute query
5) Close the connection object
By closing connection object statement and ResultSet will be closed automatically. The close() method of Connection interface is used to close the connection. |
Syntax of close() method
Example to close connection
Note: Since Java 7, JDBC has ability to use try-with-resources statement to automatically close resources of type Connection, ResultSet, and Statement.
It avoids explicit connection closing step.