Java Database Connectivity
Java Database Connectivity
23CSEA02
There are 5 steps to connect any java application with the database using JDBC. These steps a
o Register the Driver class
o Create connection
o Create statement
o Execute queries
o Close connection
1) Register the driver class
The forName() method of Class class is used to register the driver class. This method is u
load the driver class.
1. Class.forName("oracle.jdbc.driver.OracleDriver");
The getConnection() method of DriverManager class is used to establish connection with the
1. Connection con=DriverManager.getConnection(
2. "jdbc:oracle:thin:@localhost:1521:xe","system","password");
3) Create the Statement object
The createStatement() method of Connection interface is used to create statement. The obj
responsible to execute queries with the database.
1. Statement stmt=con.createStatement();
The executeQuery() method of Statement interface is used to execute queries to the data
returns the object of ResultSet that can be used to get all the records of a table.
By closing connection object statement and ResultSet will be closed automatically. The
Connection interface is used to close the connection.
1. con.close();
To connect java application with the oracle database, we need to follow 5 follo
example, we are using Oracle 10g as the database. So we need to know following informa
database:
1. Driver class: The driver class for the oracle database is oracle.jdbc.driver.OracleDriv
2. Connection URL: The connection URL for the oracle
is jdbc:oracle:thin:@localhost:1521:xe where jdbc is the API, oracle is the database
localhost is the server name on which oracle is running, we may also use IP addres
number and XE is the Oracle service name. You may get all these information from the
3. Username: The default username for the oracle database is system.
4. Password: It is the password given by the user at the time of installing the oracle datab
Create a Table
Before establishing connection, let's first create a table in oracle database. Following i
create a table.
import java.sql.*;
class OracleCon{
public static void main(String args[]){
try{
//step1 load the driver class
Class.forName("oracle.jdbc.driver.OracleDriver");
}
}
To connect java application with the Oracle database ojdbc14.jar file is required
to be loaded.
Firstly, search the ojdbc14.jar file then go to JRE/lib/ext folder and paste the jar file here.
2) set classpath:
o temporary
o permanent
Firstly, search the ojdbc14.jar file then open command prompt and write:
1. C:>set classpath=c:\folder\ojdbc14.jar;.;
Let's first create a table in the mysql database, but before creating table, we need
to create database first.
In this example, sonoo is the database name, root is the username and password
both.
import java.sql.*;
class MysqlCon{
public static void main(String args[]){
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection(
"jdbc:mysql://localhost:3306/sonoo","root","root");
//here sonoo is database name, root is username and password
Statement stmt=con.createStatement();
ResultSet rs=stmt.executeQuery("select * from emp");
while(rs.next())
System.out.println(rs.getInt(1)+" "+rs.getString(2)+" "+rs.getString(3));
con.close();
}catch(Exception e){ System.out.println(e);}
}
}
Download the mysqlconnector.jar file. Go to jre/lib/ext folder and paste the jar file here.
2) Set classpath:
o temporary
o permanent
1. C:>set classpath=c:\folder\mysql-connector-java-5.0.8-bin.jar;.;
There are two ways to connect java application with the access database.
Java is mostly used with Oracle, mysql, or DB2 database. So you can learn this
topic only for knowledge.
In this example, we are going to connect the java program with the access
database. In such case, we have created the login table in the access database.
There is only one column in the table named name. Let's get all the name of the
login table.
import java.sql.*;
class Test{
public static void main(String ar[]){
try{
String database="student.mdb";//Here database exists in the current dire
ctory
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection c=DriverManager.getConnection(url);
Statement st=c.createStatement();
ResultSet rs=st.executeQuery("select * from login");
while(rs.next()){
System.out.println(rs.getString(1));
}
}catch(Exception ee){System.out.println(ee);}
}}
import java.sql.*;
class Test{
public static void main(String ar[]){
try{
String url="jdbc:odbc:mydsn";
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection c=DriverManager.getConnection(url);
Statement st=c.createStatement();
ResultSet rs=st.executeQuery("select * from login");
while(rs.next()){
System.out.println(rs.getString(1));
}
}catch(Exception ee){System.out.println(ee);}
}}