SlideShare a Scribd company logo
JDBC
(Java Database Connectivity)
Overview (1/2)
 JDBC
 JDBC is a standard interface for connecting to relational databases
from Java
 The JDBC Classes and Interfaces are in the java.sql package
 JDBC is Java API for executing SQL statements

Provides a standard API for tool/database developers

Possible to write database applications using a pure Java API

Easy to send SQL statements to virtually any relational database
 What does JDBC do?
 Establish a connection with a database
 Send SQL statements
 Process the results
JDBC Driver
JAVA Applet/
Application Database
JDBC Call
Database
Command
 Reason for JDBC
 Database vendors (Microsoft Access, Oracle etc.) provide
proprietary (non standard) API for sending SQL to the server
and receiving results from it
 Languages such as C/C++ can make use of these proprietary
APIs directly

High performance

Can make use of non standard features of the database

All the database code needs to be rewritten if you change
database vendor or product
 JDBC is a vendor independent API for accessing relational
data from different database vendors in a consistent way
CCTM: Course material developed by James King (james.king@londonmet.ac.uk)
Overview (2/2)
History of JDBC (1/2)
 JDBC 1.0 released 9/1996.
 Contains basic functionality to connect to database, query database,
process results
 JDBC classes are part of java.sql package
 Comes with JDK 1.1
 JDBC 2.0 released 5/1998
 Comes with JDK 1.2
 javax.sql contains additional functionality
 Additional functionality:

Scroll in result set or move to specific row

Update database tables using Java methods instead of SQL
commands

Send multiple SQL statements to the database as a batch

Use of SQL3 datatypes as column values
History of JDBC (2/2)
 JDBC 3.0 released 2/2002
 Comes with Java 2, J2SE 1.4

Support for:

Connection pooling

Multiple result sets

Prepared statement pooling

Save points in transactions
JDBC Model
 JDBC consists of two parts:
 JDBC API, a purely Java-based API
 JDBC driver manager

Communicates with vendor-specific
drivers
 Connection con =
DriverManager.getConnection( "jd
bc:myDriver:myDatabase",
username, password);
JAVA Applet/
Application
JDBC API
Driver Manager
Driver API
Vendor Specific
JDBC Driver
JDBC-ODBC Bridge
Database
Vender Specific
ODBC Driver
Database
Java Application
Developer
JDBC Developer
Vender Specific
JDBC developer
JDBC Programming Steps
Connect
Query
Process Results
Close
1) Register the driver
2) Create a connection to the database
1) Create a statement
2) Query the database
1) Get a result set
2) Assign results to Java variables
1) Close the result set
2) Close the statement
3) Close the connection
Skeleton Code
Class.forName(DRIVERNAME);
Connection con = DriverManager.getConnection(
CONNECTIONURL, DBID, DBPASSWORD);
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(“SELECT a, b, c FROM member);
While(rs.next())
{
Int x = rs.getInt(“a”);
String s = rs.getString(“b”);
Float f = rs.getFloat(“c”);
}
rs.close();
stmt.close();
con.close();
Loading a JDBC driver
Connecting to a database
Processing the result set
Closing the connections
Executing SQL
Step 1 : Loading a JDBC Driver
 A JDBC driver is needed to connect to a database
 Loading a driver requires the class name of the driver.
Ex) JDBC-ODBC: sun.jdbc.odbc.JdbcOdbcDriver
Oracle driver: oracle.jdbc.driver.OracleDriver
MySQL: com.mysql.jdbc.Driver
 Loaing the driver class
Class.forName("com.mysql.jdbc.Driver");
 It is possible to load several drivers.
 The class DriverManager manages the loaded driver(s)
Step 2 : Connecting to a Database (1/2)
 JDBC URL for a database
 Identifies the database to be connected
 Consists of three-part:
jdbc:<subprotocol>:<subname>
Protocol: JDBC is
the only protocol in
JDBC
Protocol: JDBC is
the only protocol in
JDBC
Subname: indicates the location and
name of the database to be
accessed. Syntax is driver specific
Subname: indicates the location and
name of the database to be
accessed. Syntax is driver specific
Sub-protocol:
identifies a
database
driver
Sub-protocol:
identifies a
database
driver
Ex) jdbc:mysql://oopsla.snu.ac.kr/mydb
The syntax for the name of the database is a little messy and is
unfortunately vendor specific
JDBC URL
Vendor of database, Location of
database server and name of
database
Username Password
Step 2 : Connecting to a Database (2/2)
 The DriverManager allows you to connect to a database using
the specified JDBC driver, database location, database name,
username and password.
 It returns a Connection object which can then be used to
communicate with the database.
Connection connection =
DriverManager.getConnection("jdbc:mysql://oopsla.snu.ac.kr/mydb",“useri
d",“password");
JDBC URL
Vendor of database, Location of
database server and name of
database
Username Password
Step 3 : Executing SQL (1/2)
 Statement object
 Can be obtained from a Connection object
 Sends SQL to the database to be executed
 Statement has three methods to execute a SQL statement:
 executeQuery() for QUERY statements

Returns a ResultSet which contains the query results
 executeUpdate() for INSERT, UPDATE, DELETE statements

Returns an integer, the number of affected rows from the SQL
 execute() for either type of statement
Statement statement = connection.createStatement();
Statement stmt = conn.createStatement();
ResultSet rset = stmt.executeQuery
("select RENTAL_ID, STATUS from ACME_RENTALS");
Statement stmt = conn.createStatement();
int rowcount = stmt.executeUpdate
("delete from ACME_RENTAL_ITEMS
where rental_id = 1011");
Step 3 : Executing SQL (2/2)
 Execute a select statement
 Execute a delete statement
Step 4 : Processing the Results (1/2)
 JDBC returns the results of a query in a ResultSet object
 ResultSet object contains all of the rows which satisfied the conditions
in an SQL statement
 A ResultSet object maintains a cursor pointing to its current
row of data
 Use next() to step through the result set row by row

next() returns TRUE if there are still remaining records
 getString(), getInt(), and getXXX() assign each value to a Java
variable
Record 1 Record 2 Record 3 Record 4
ResultSetInternal Pointer
The internal pointer starts one before the first record
Step 4 : Processing the Results (2/2)
 Example
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(“SELECT ID, name, score FROM table1”);
While (rs.next()){
int id = rs.getInt(“ID”);
String name = rs.getString(“name”);
float score = rs.getFloat(“score”);
System.out.println(“ID=” + id + “ ” + name + “ ” + score);}
NOTE
You must step the cursor to the first record before read the results
This code will not skip the first record
ID name score
1 James 90.5
2 Smith 45.7
3 Donald 80.2
Table1
Output
ID=1 James 90.5
ID=2 Smith 45.7
ID=3 Donald 80.2
Step 5 : Closing Database Connection
 It is a good idea to close the Statement and Connection objects
when you have finished with them
 Close the ResultSet object
rs.close();
 Close the Statement object
stmt.close();
 Close the connection
connection.close();
The PreparedStatement Object
 A PreparedStatement object holds precompiled SQL
statements
 Use this object for statements you want to execute more than
once
 A PreparedStatement can contain variables (?) that you supply
each time you execute the statement
// Create the prepared statement
PreparedStatement pstmt = con.prepareStatement(“
UPDATE table1 SET status = ? WHERE id =?”)
// Supply values for the variables
pstmt.setString (1, “out”);
pstmt.setInt(2, id);
// Execute the statement
pstmt.executeUpdate();

More Related Content

PPSX
JDBC: java DataBase connectivity
PPT
Jdbc complete
PPTX
enterprise java bean
PPTX
servlet in java
PDF
Event management by using cloud computing
PPT
Jdbc ppt
PPT
JDBC: java DataBase connectivity
Jdbc complete
enterprise java bean
servlet in java
Event management by using cloud computing
Jdbc ppt

What's hot (20)

PDF
Enterprise java unit-1_chapter-1
PPTX
Types of Drivers in JDBC
PPTX
object oriented methodologies
PPTX
Java Beans
PPS
Jdbc architecture and driver types ppt
PPS
Java rmi
PPTX
The Differences Between Bluetooth, ZigBee and WiFi
PDF
Enterprise Java Beans - EJB
PPT
Java beans
PPTX
Computer Science:Java jdbc
PDF
Object oriented-systems-development-life-cycle ppt
PPTX
Design Pattern in Software Engineering
DOCX
BANK MANAGEMENT SYSTEM report
PPTX
J2 ee container & components
PDF
iot enabling technologies for IOT subject
PPTX
HTTP request and response
PPTX
JDBC ppt
PPTX
Bluetooth protocol
DOCX
Software Engineering Assignment
Enterprise java unit-1_chapter-1
Types of Drivers in JDBC
object oriented methodologies
Java Beans
Jdbc architecture and driver types ppt
Java rmi
The Differences Between Bluetooth, ZigBee and WiFi
Enterprise Java Beans - EJB
Java beans
Computer Science:Java jdbc
Object oriented-systems-development-life-cycle ppt
Design Pattern in Software Engineering
BANK MANAGEMENT SYSTEM report
J2 ee container & components
iot enabling technologies for IOT subject
HTTP request and response
JDBC ppt
Bluetooth protocol
Software Engineering Assignment
Ad

Viewers also liked (10)

PPT
Jdbc slide for beginers
PDF
Weather patterns
PDF
Spring framework - J2EE S Lidskou Tvari
PPTX
Java.sql package
PPT
PPT
JDBC Tutorial
PPT
KMUTNB - Internet Programming 6/7
PPS
Abzolute Logistic Solution
PPT
1 java servlets and jsp
Jdbc slide for beginers
Weather patterns
Spring framework - J2EE S Lidskou Tvari
Java.sql package
JDBC Tutorial
KMUTNB - Internet Programming 6/7
Abzolute Logistic Solution
1 java servlets and jsp
Ad

Similar to Jdbc (database in java) (20)

PPTX
PPT
jdbc_presentation.ppt
PPT
JDBC.ppt
PDF
PDF
Jdbc[1]
PDF
JDBC programming
PPTX
Java Data Base Connectivity concepts.pptx
PPTX
03-JDBC.pptx
PPT
JDBC java for learning java for learn.ppt
PPT
Java jdbc
PPTX
Jdbc presentation
PDF
Jdbc 1
PDF
Introduction to JDBC and database access in web applications
PPTX
Jdbc introduction
PDF
Chapter 5 JDBC.pdf for stufent of computer andtudent It s
PPT
Jdbc sasidhar
PPTX
Jdbc Java Programming
PPTX
jdbc_presentation.ppt
JDBC.ppt
Jdbc[1]
JDBC programming
Java Data Base Connectivity concepts.pptx
03-JDBC.pptx
JDBC java for learning java for learn.ppt
Java jdbc
Jdbc presentation
Jdbc 1
Introduction to JDBC and database access in web applications
Jdbc introduction
Chapter 5 JDBC.pdf for stufent of computer andtudent It s
Jdbc sasidhar
Jdbc Java Programming

Recently uploaded (20)

PDF
Digital Logic Computer Design lecture notes
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
DOCX
573137875-Attendance-Management-System-original
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
Sustainable Sites - Green Building Construction
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
additive manufacturing of ss316l using mig welding
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Safety Seminar civil to be ensured for safe working.
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
Artificial Intelligence
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PPTX
Current and future trends in Computer Vision.pptx
Digital Logic Computer Design lecture notes
UNIT-1 - COAL BASED THERMAL POWER PLANTS
573137875-Attendance-Management-System-original
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Model Code of Practice - Construction Work - 21102022 .pdf
Sustainable Sites - Green Building Construction
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
additive manufacturing of ss316l using mig welding
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Operating System & Kernel Study Guide-1 - converted.pdf
Safety Seminar civil to be ensured for safe working.
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Artificial Intelligence
UNIT 4 Total Quality Management .pptx
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
bas. eng. economics group 4 presentation 1.pptx
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
R24 SURVEYING LAB MANUAL for civil enggi
Current and future trends in Computer Vision.pptx

Jdbc (database in java)

  • 2. Overview (1/2)  JDBC  JDBC is a standard interface for connecting to relational databases from Java  The JDBC Classes and Interfaces are in the java.sql package  JDBC is Java API for executing SQL statements  Provides a standard API for tool/database developers  Possible to write database applications using a pure Java API  Easy to send SQL statements to virtually any relational database  What does JDBC do?  Establish a connection with a database  Send SQL statements  Process the results JDBC Driver JAVA Applet/ Application Database JDBC Call Database Command
  • 3.  Reason for JDBC  Database vendors (Microsoft Access, Oracle etc.) provide proprietary (non standard) API for sending SQL to the server and receiving results from it  Languages such as C/C++ can make use of these proprietary APIs directly  High performance  Can make use of non standard features of the database  All the database code needs to be rewritten if you change database vendor or product  JDBC is a vendor independent API for accessing relational data from different database vendors in a consistent way CCTM: Course material developed by James King ([email protected]) Overview (2/2)
  • 4. History of JDBC (1/2)  JDBC 1.0 released 9/1996.  Contains basic functionality to connect to database, query database, process results  JDBC classes are part of java.sql package  Comes with JDK 1.1  JDBC 2.0 released 5/1998  Comes with JDK 1.2  javax.sql contains additional functionality  Additional functionality:  Scroll in result set or move to specific row  Update database tables using Java methods instead of SQL commands  Send multiple SQL statements to the database as a batch  Use of SQL3 datatypes as column values
  • 5. History of JDBC (2/2)  JDBC 3.0 released 2/2002  Comes with Java 2, J2SE 1.4  Support for:  Connection pooling  Multiple result sets  Prepared statement pooling  Save points in transactions
  • 6. JDBC Model  JDBC consists of two parts:  JDBC API, a purely Java-based API  JDBC driver manager  Communicates with vendor-specific drivers  Connection con = DriverManager.getConnection( "jd bc:myDriver:myDatabase", username, password); JAVA Applet/ Application JDBC API Driver Manager Driver API Vendor Specific JDBC Driver JDBC-ODBC Bridge Database Vender Specific ODBC Driver Database Java Application Developer JDBC Developer Vender Specific JDBC developer
  • 7. JDBC Programming Steps Connect Query Process Results Close 1) Register the driver 2) Create a connection to the database 1) Create a statement 2) Query the database 1) Get a result set 2) Assign results to Java variables 1) Close the result set 2) Close the statement 3) Close the connection
  • 8. Skeleton Code Class.forName(DRIVERNAME); Connection con = DriverManager.getConnection( CONNECTIONURL, DBID, DBPASSWORD); Statement stmt = con.createStatement(); ResultSet rs = stmt.executeQuery(“SELECT a, b, c FROM member); While(rs.next()) { Int x = rs.getInt(“a”); String s = rs.getString(“b”); Float f = rs.getFloat(“c”); } rs.close(); stmt.close(); con.close(); Loading a JDBC driver Connecting to a database Processing the result set Closing the connections Executing SQL
  • 9. Step 1 : Loading a JDBC Driver  A JDBC driver is needed to connect to a database  Loading a driver requires the class name of the driver. Ex) JDBC-ODBC: sun.jdbc.odbc.JdbcOdbcDriver Oracle driver: oracle.jdbc.driver.OracleDriver MySQL: com.mysql.jdbc.Driver  Loaing the driver class Class.forName("com.mysql.jdbc.Driver");  It is possible to load several drivers.  The class DriverManager manages the loaded driver(s)
  • 10. Step 2 : Connecting to a Database (1/2)  JDBC URL for a database  Identifies the database to be connected  Consists of three-part: jdbc:<subprotocol>:<subname> Protocol: JDBC is the only protocol in JDBC Protocol: JDBC is the only protocol in JDBC Subname: indicates the location and name of the database to be accessed. Syntax is driver specific Subname: indicates the location and name of the database to be accessed. Syntax is driver specific Sub-protocol: identifies a database driver Sub-protocol: identifies a database driver Ex) jdbc:mysql://oopsla.snu.ac.kr/mydb The syntax for the name of the database is a little messy and is unfortunately vendor specific
  • 11. JDBC URL Vendor of database, Location of database server and name of database Username Password Step 2 : Connecting to a Database (2/2)  The DriverManager allows you to connect to a database using the specified JDBC driver, database location, database name, username and password.  It returns a Connection object which can then be used to communicate with the database. Connection connection = DriverManager.getConnection("jdbc:mysql://oopsla.snu.ac.kr/mydb",“useri d",“password"); JDBC URL Vendor of database, Location of database server and name of database Username Password
  • 12. Step 3 : Executing SQL (1/2)  Statement object  Can be obtained from a Connection object  Sends SQL to the database to be executed  Statement has three methods to execute a SQL statement:  executeQuery() for QUERY statements  Returns a ResultSet which contains the query results  executeUpdate() for INSERT, UPDATE, DELETE statements  Returns an integer, the number of affected rows from the SQL  execute() for either type of statement Statement statement = connection.createStatement();
  • 13. Statement stmt = conn.createStatement(); ResultSet rset = stmt.executeQuery ("select RENTAL_ID, STATUS from ACME_RENTALS"); Statement stmt = conn.createStatement(); int rowcount = stmt.executeUpdate ("delete from ACME_RENTAL_ITEMS where rental_id = 1011"); Step 3 : Executing SQL (2/2)  Execute a select statement  Execute a delete statement
  • 14. Step 4 : Processing the Results (1/2)  JDBC returns the results of a query in a ResultSet object  ResultSet object contains all of the rows which satisfied the conditions in an SQL statement  A ResultSet object maintains a cursor pointing to its current row of data  Use next() to step through the result set row by row  next() returns TRUE if there are still remaining records  getString(), getInt(), and getXXX() assign each value to a Java variable Record 1 Record 2 Record 3 Record 4 ResultSetInternal Pointer The internal pointer starts one before the first record
  • 15. Step 4 : Processing the Results (2/2)  Example Statement stmt = con.createStatement(); ResultSet rs = stmt.executeQuery(“SELECT ID, name, score FROM table1”); While (rs.next()){ int id = rs.getInt(“ID”); String name = rs.getString(“name”); float score = rs.getFloat(“score”); System.out.println(“ID=” + id + “ ” + name + “ ” + score);} NOTE You must step the cursor to the first record before read the results This code will not skip the first record ID name score 1 James 90.5 2 Smith 45.7 3 Donald 80.2 Table1 Output ID=1 James 90.5 ID=2 Smith 45.7 ID=3 Donald 80.2
  • 16. Step 5 : Closing Database Connection  It is a good idea to close the Statement and Connection objects when you have finished with them  Close the ResultSet object rs.close();  Close the Statement object stmt.close();  Close the connection connection.close();
  • 17. The PreparedStatement Object  A PreparedStatement object holds precompiled SQL statements  Use this object for statements you want to execute more than once  A PreparedStatement can contain variables (?) that you supply each time you execute the statement // Create the prepared statement PreparedStatement pstmt = con.prepareStatement(“ UPDATE table1 SET status = ? WHERE id =?”) // Supply values for the variables pstmt.setString (1, “out”); pstmt.setInt(2, id); // Execute the statement pstmt.executeUpdate();

Editor's Notes

  • #14: Dynamically Executing an Unknown SQL Statement The following example uses execute() to dynamically execute an unknown statement: public void executeStmt (String statement) throws SQLException { Statement stmt = conn.createStatement(); // Execute the statement boolean result = stmt.execute(statement); if (result) {// statement was a query ResultSet rset = stmt.getResultSet(); // Process the results ... } else {// statement was an update or DDL int updateCount = stmt.getUpdateCount(); // Process the results ... }}