SlideShare a Scribd company logo
JDBC – J ava  D ata b ase  C onnectivity Modified slides  from Dr. Yehoshua Sagiv
Introduction to JDBC JDBC  is used for accessing databases from Java applications Information is transferred from relations to objects and vice-versa databases  optimized for  searching/indexing objects  optimized for  engineering/flexibility
JDBC Architecture Java Application JDBC Oracle DB2 MySQL Oracle  Driver DB2 Driver MySQL  Driver Network We will  use this one…
JDBC Architecture (cont.) Java code calls JDBC library JDBC loads a  driver   Driver talks to a particular database An application can work with several databases by using all corresponding drivers Ideal: can change database engines  without changing any application code  (not always in practice) Application JDBC Driver
JDBC Driver for Oracle Download Oracle JDBC driver from :  http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101040.html To install simply download  and put ojdbc14.jar in the class path
Seven Steps Load the driver Define the connection URL Establish the connection Create a  Statement   object Execute a query using the  Statement Process the result Close the connection
Loading the Driver We can register the driver indirectly using the statement   Class.forName( "oracle.jdbc.driver.OracleDriver" ); Class.forName  loads the specified class When  OracleDriver  is loaded, it automatically creates an instance of itself registers this instance with the  DriverManager Hence, the driver class can be given as an argument of the application
An Example // A driver for imaginary1 Class.forName( "ORG.img.imgSQL1.imaginary1Driver" ); // A driver for imaginary2 Driver driver = new ORG.img.imgSQL2.imaginary2Driver(); DriverManager.registerDriver(driver); //A driver for MySQL Class.forName( "com.mysql.jdbc.Driver" );       imaginary1 imaginary2 Registered Drivers MySQL
Connecting to the Database Every database is identified by a URL Given a URL,  DriverManager  looks for the driver that can talk to the corresponding database  DriverManager  tries all registered drivers, until a suitable one is found
Connecting to the Database Connection con = DriverManager. getConnection( &quot;jdbc:imaginaryDB1&quot; );   imaginary1 imaginary2 Registered Drivers Oracle    acceptsURL( &quot;jdbc:imaginaryDB1&quot; )? We Use: DriverManager.getConnection(<URL>, <user>, <pwd>); Where <UR>L is :  jdbc:oracle:thin:@dataserv.mscs.mu.edu:1521:cosmos
Interaction with the Database We use  Statement  objects in order to Query  the database Update  the database Three different interfaces are used: Statement ,  PreparedStatement ,  CallableStatement All are interfaces, hence cannot be instantiated They are created by the  Connection
Querying with Statement The  executeQuery  method returns a  ResultSet  object representing the query result. Will be discussed later… String  queryStr  =  &quot;SELECT * FROM employee &quot;   + &quot;WHERE lname = ‘Wong'&quot; ; Statement stmt = con.createStatement(); ResultSet rs = stmt.executeQuery( queryStr );
Changing DB with Statement String  deleteStr  =  &quot;DELETE FROM employee &quot;   + &quot;WHERE lname = ‘Wong'&quot; ; Statement stmt = con.createStatement(); int delnum = stmt.executeUpdate( deleteStr ); executeUpdate  is used for data manipulation: insert, delete, update, create table, etc. (anything other than querying!) executeUpdate  returns the number of rows modified
About Prepared Statements Prepared Statements are used for queries that are executed many times They are parsed (compiled) by the DBMS only once Column values can be set  after compilation Instead of values, use ‘ ? ’ Hence, Prepared Statements can be though of as statements that contain placeholders to be substituted later with actual values
Querying with  PreparedStatement String  queryStr  =  &quot;SELECT * FROM employee &quot;   + &quot;WHERE superssn=  ?  and salary >  ? &quot; ; PreparedStatement pstmt =  con.prepareStatement( queryStr ); pstmt.setString( 1 ,   &quot;333445555&quot; ); pstmt.setInt( 2 , 26000); ResultSet rs = pstmt.executeQuery();
Updating with  PreparedStatement String deleteStr =  “ DELETE FROM employee &quot;   + &quot;WHERE superssn = ? and salary > ?&quot; ;   PreparedStatement pstmt =  con.prepareStatement(deleteStr); pstmt.setString(1,  &quot;333445555&quot; ); pstmt.setDouble(2, 26000); int delnum = pstmt.executeUpdate();
Statements vs. PreparedStatements: Be Careful! Are these the same? What do they do?  String  val  =   &quot;abc&quot; ; PreparedStatement pstmt =  con.prepareStatement( &quot;select * from R where A=?&quot; ); pstmt.setString(1,  val ); ResultSet rs =  pstmt.executeQuery(); String val =   &quot;abc&quot; ; Statement stmt =  con.createStatement( ); ResultSet rs =  stmt.executeQuery( &quot;select * from R where A=&quot;  + val);
Statements vs. PreparedStatements: Be Careful! Will this work? No!!!  A  ‘?’  can only be used to represent a column value PreparedStatement pstmt =  con.prepareStatement( &quot;select * from ?&quot; ); pstmt.setString(1, myFavoriteTableString);
Timeout Use  setQueryTimeOut(int seconds)  of Statement to set a timeout for the driver to wait for a statement to be completed If the operation is not completed in the given time, an  SQLException  is thrown What is it good for?
ResultSet ResultSet  objects provide access to the tables generated as results of executing a  Statement  queries Only one  ResultSet  per  Statement  can be open at the same time! The table rows are retrieved in sequence A  ResultSet  maintains a cursor pointing to its current row  The   next()   method moves the cursor to the next row
ResultSet Methods boolean next()  activates the next row the first call to next() activates the first row returns false if there are no more rows  void close()  disposes of the  ResultSet allows you to re-use the  Statement  that created it automatically called by most  Statement  methods
ResultSet Methods Type  get Type (int  columnIndex ) returns the given field as the given type indices start at  1  and not  0 ! Type  get Type (String  columnName ) same, but uses name of field less efficient For example:  getString( columnIndex ) ,   getInt( columnName ) ,  getTime ,  getBoolean ,  getType ,... int findColumn(String  columnName ) looks up column index given column name
ResultSet Methods JDBC 2.0 includes scrollable result sets. Additional methods included are : ‘first’, ‘last’, ‘previous’, and other methods.
ResultSet Example Statement stmt = con.createStatement(); ResultSet  rs  = stmt.  executeQuery( &quot;select lname,salary from employees&quot; );      // Print the result while ( rs .next()) {  System.out.print(rs.getString(1) +  &quot;:&quot; );  System.out.println(rs.getDouble( “salary&quot; )); }
Mapping Java Types to SQL Types SQL type    Java Type  CHAR, VARCHAR, LONGVARCHAR   String NUMERIC, DECIMAL   java.math.BigDecimal BIT   boolean TINYINT   byte SMALLINT   short INTEGER   int BIGINT   long REAL   float FLOAT, DOUBLE   double BINARY, VARBINARY, LONGVARBINARY   byte[] DATE   java.sql.Date TIME   java.sql.Time TIMESTAMP   java.sql.Timestamp
Null Values In SQL, NULL means the field is empty Not the same as  0  or  &quot;&quot; In JDBC, you must explicitly ask if the last-read field was null  ResultSet.wasNull( column )  For example,  getInt( column )  will return  0  if the value is either  0  or  NULL !
Null Values When inserting null values into placeholders of Prepared Statements: Use the method  setNull( index , Types. sqlType )  for primitive types (e.g.  INTEGER ,  REAL ); You may also use the  set Type ( index ,  null )  for object types (e.g.  STRING ,  DATE ).
ResultSet Meta-Data  ResultSetMetaData  rsmd  = rs.getMetaData(); int  numcols  =  rsmd .getColumnCount(); for (int i = 1 ; i <=  numcols ; i++) { System.out.print( rsmd .getColumnLabel(i)+ &quot; &quot; ); } A  ResultSetMetaData  is an object that can be used to get information about the properties of the columns in a  ResultSet  object An example: write the columns of the result set
Database Time Times in SQL are notoriously non-standard Java defines three classes to help java.sql.Date year, month, day java.sql.Time hours, minutes, seconds java.sql.Timestamp year, month, day, hours, minutes, seconds, nanoseconds usually use this one
Cleaning Up After Yourself Remember to close the Connections, Statements, Prepared Statements and Result Sets con.close(); stmt.close(); pstmt.close(); rs.close()
Dealing With Exceptions An SQLException is actually a list of exceptions catch (SQLException e) { while (e != null) { System.out.println(e.getSQLState()); System.out.println(e.getMessage()); System.out.println(e.getErrorCode()); e = e.getNextException(); } }
Transactions and JDBC Transaction: more than one statement that must all succeed (or all fail) together e.g., updating several tables due to customer purchase If one fails, the system must reverse all previous actions Also can’t leave DB in inconsistent state halfway through a transaction COMMIT  = complete transaction ROLLBACK  = cancel all actions
Example Suppose we want to transfer money from bank account 13 to account 72: PreparedStatement pstmt =  con.prepareStatement( &quot;update BankAccount    set amount = amount + ?   where accountId = ?&quot; ); pstmt.setInt(1,-100);  pstmt.setInt(2, 13); pstmt.executeUpdate(); pstmt.setInt(1, 100);  pstmt.setInt(2, 72); pstmt.executeUpdate(); What happens if this update fails?
Transaction Management Transactions are  not  explicitly opened and closed The connection has a state called  AutoCommit  mode if  AutoCommit  is  true , then every statement is automatically committed  if  AutoCommit  is  false , then every statement is added to an ongoing transaction Default:  true
AutoCommit If you set AutoCommit to false, you must explicitly commit or rollback the transaction using  Connection.commit()  and  Connection.rollback() Note: DDL statements (e.g., creating/deleting tables) in a transaction may be ignored or may cause a commit to occur The behavior is DBMS dependent  setAutoCommit( boolean val )
Scrollable ResultSet Statement createStatement( int resultSetType, int resultSetConcurrency) resultSetType : ResultSet.TYPE_FORWARD_ONLY -default; same as in JDBC 1.0 -allows only forward movement of the cursor -when rset.next() returns false, the data is no longer available and the result set is closed. ResultSet.TYPE_SCROLL_INSENSITIVE -backwards, forwards, random cursor movement. -changes made in the database are not seen in the result set object in Java memory. ResultSetTYPE_SCROLL_SENSITIVE -backwards, forwards, random cursor movement. -changes made in the database are seen in the result set object in Java memory.
Scrollable ResultSet (cont’d) resultSetConcurrency: ResultSet.CONCUR_READ_ONLY This is the default (and same as in JDBC 1.0) and allows only data to be read from the database. ResultSet.CONCUR_UPDATABLE This option allows for the Java program to make  changes to the database based on new methods and  positioning ability of the cursor. Example: Statement stmt = conn.createStatement( ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); ResultSetrset= stmt.executeQuery( “SHOW TABLES”);
Scrollable ResultSet (cont’d) public boolean absolute(int row) throws SQLException -If the given row number is positive, this method moves the cursor to the given row number (with the first row numbered 1).  -If the row number is negative, the cursor moves to a  relative position from the last row.  -If the row number is 0, an SQLException will be raised . public boolean relative(int row) throws SQLException This method call moves the cursor a relative number of rows, either positive or negative.  An attempt to move beyond the last row (or before the first row) in the result set positions the cursor after the last row (or before the first row). public boolean first() throws SQLException public boolean last() throws SQLException public boolean previous() throws SQLException public boolean next() throws SQLException
Scrollable ResultSet (cont’d) public void beforeFirst() throws SQLException public void afterLast() throws SQLException public boolean isFirst() throws SQLException public boolean isLast() throws SQLException public boolean isAfterLast() throws SQLException public boolean isBeforeFirst() throws SQLException public int getRow() throws SQLException getRow() method retrieves the current row number: The first row is number 1, the second number 2, and so on.
JDBC Usage in Industry Apace DbUtils ( http://jakarta.apache.org/commons/dbutils/ ) ORM (Object Relational Mappers):  Hibernate ( http://www.hibernate.org/ ),  JDO ( http://java.sun.com/products/jdo/ ),  TopLink ( http://www.oracle.com/technology/products/ias/toplink/index.html )

More Related Content

PPSX
JDBC: java DataBase connectivity
PPTX
Control statements in c
PPT
time-management-ppt
PDF
Introduction to Graphic Design PDF [slideshare]
PDF
Object oriented-systems-development-life-cycle ppt
PPTX
Evaluation in Education.pptx
PPTX
Java RMI
PPTX
Java Programming
JDBC: java DataBase connectivity
Control statements in c
time-management-ppt
Introduction to Graphic Design PDF [slideshare]
Object oriented-systems-development-life-cycle ppt
Evaluation in Education.pptx
Java RMI
Java Programming

What's hot (20)

PPT
Jdbc ppt
PPTX
Java Database Connectivity (JDBC)
PPT
Java Collections Framework
PDF
Collections Api - Java
PPTX
Jdbc ppt
PPTX
Spring Framework
PPTX
Hibernate ppt
PPTX
Presentation on-exception-handling
PPT
Java Persistence API (JPA) Step By Step
PPS
Jdbc architecture and driver types ppt
PPT
Abstract class in java
PPTX
Ado.Net Tutorial
PPTX
Java - Collections framework
PPTX
This keyword in java
PPT
Java collections concept
PDF
Spring Framework - Core
PPTX
JDBC ppt
PDF
Java Collection framework
Jdbc ppt
Java Database Connectivity (JDBC)
Java Collections Framework
Collections Api - Java
Jdbc ppt
Spring Framework
Hibernate ppt
Presentation on-exception-handling
Java Persistence API (JPA) Step By Step
Jdbc architecture and driver types ppt
Abstract class in java
Ado.Net Tutorial
Java - Collections framework
This keyword in java
Java collections concept
Spring Framework - Core
JDBC ppt
Java Collection framework
Ad

Viewers also liked (20)

PPT
JDBC Java Database Connectivity
PPT
JDBC Tutorial
PPS
Jdbc example program with access and MySql
PPTX
Database Access With JDBC
PPTX
Jdbc in servlets
PPT
Data Access with JDBC
PPTX
Java database connectivity with MySql
PPTX
Java database connectivity with MySql
PPTX
Database Connectivity with JDBC
PPTX
java Jdbc
PPT
Java Database Connectivity
PPT
Jdbc Dao it-slideshares.blogspot.com
PPT
Jdbc in java
PDF
Jdbc Complete Notes by Java Training Center (Som Sir)
PPT
Java Swing
PPT
3 database-jdbc(1)
PPT
Java lezione 10
PPT
Java JDBC Communication and Connection Manager
JDBC Java Database Connectivity
JDBC Tutorial
Jdbc example program with access and MySql
Database Access With JDBC
Jdbc in servlets
Data Access with JDBC
Java database connectivity with MySql
Java database connectivity with MySql
Database Connectivity with JDBC
java Jdbc
Java Database Connectivity
Jdbc Dao it-slideshares.blogspot.com
Jdbc in java
Jdbc Complete Notes by Java Training Center (Som Sir)
Java Swing
3 database-jdbc(1)
Java lezione 10
Java JDBC Communication and Connection Manager
Ad

Similar to JDBC – Java Database Connectivity (20)

PPT
Executing Sql Commands
PPT
Executing Sql Commands
PPT
JDBC for CSQL Database
PPT
PPT
Jdbc oracle
PPT
30 5 Database Jdbc
PDF
Java OOP Programming language (Part 8) - Java Database JDBC
PPT
Sqlapi0.1
PPT
JDBC_Template for database connection using Spring
PPT
JDBC.ppt JDBC_FM_2012_201JDBC_FM_2012_201
PPT
Java jdbc
PPT
Jdbc
PPT
4. Database Connectivity using JDBC .ppt
PDF
Jdbc[1]
PDF
JDBC programming
PPT
JDBC Connecticity.ppt
PPTX
Jdbc ja
PPS
Jdbc api
PPT
JDBC (2).ppt
PDF
Introduction to JDBC and database access in web applications
Executing Sql Commands
Executing Sql Commands
JDBC for CSQL Database
Jdbc oracle
30 5 Database Jdbc
Java OOP Programming language (Part 8) - Java Database JDBC
Sqlapi0.1
JDBC_Template for database connection using Spring
JDBC.ppt JDBC_FM_2012_201JDBC_FM_2012_201
Java jdbc
Jdbc
4. Database Connectivity using JDBC .ppt
Jdbc[1]
JDBC programming
JDBC Connecticity.ppt
Jdbc ja
Jdbc api
JDBC (2).ppt
Introduction to JDBC and database access in web applications

More from Information Technology (20)

PDF
Sql Server Security Best Practices
PPT
PPT
SQL 2005 Disk IO Performance
PPT
PPT
Review of SQL
PPT
Sql 2005 high availability
PPT
IIS 7: The Administrator’s Guide
PPT
MOSS 2007 Deployment Fundamentals -Part2
PPT
MOSS 2007 Deployment Fundamentals -Part1
PPT
Clustering and High Availability
PDF
F5 beyond load balancer (nov 2009)
PPT
WSS 3.0 & SharePoint 2007
PPT
SharePoint Topology
PDF
Sharepoint Deployments
PPT
Microsoft Clustering
PDF
Scalable Internet Servers and Load Balancing
PPT
PPT
Migration from ASP to ASP.NET
Sql Server Security Best Practices
SQL 2005 Disk IO Performance
Review of SQL
Sql 2005 high availability
IIS 7: The Administrator’s Guide
MOSS 2007 Deployment Fundamentals -Part2
MOSS 2007 Deployment Fundamentals -Part1
Clustering and High Availability
F5 beyond load balancer (nov 2009)
WSS 3.0 & SharePoint 2007
SharePoint Topology
Sharepoint Deployments
Microsoft Clustering
Scalable Internet Servers and Load Balancing
Migration from ASP to ASP.NET

Recently uploaded (20)

PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Electronic commerce courselecture one. Pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Advanced Soft Computing BINUS July 2025.pdf
PPTX
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
PDF
Sensors and Actuators in IoT Systems using pdf
PDF
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPT
Teaching material agriculture food technology
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
Spectral efficient network and resource selection model in 5G networks
Chapter 3 Spatial Domain Image Processing.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Electronic commerce courselecture one. Pdf
20250228 LYD VKU AI Blended-Learning.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Advanced Soft Computing BINUS July 2025.pdf
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
Sensors and Actuators in IoT Systems using pdf
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Empathic Computing: Creating Shared Understanding
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
The Rise and Fall of 3GPP – Time for a Sabbatical?
Understanding_Digital_Forensics_Presentation.pptx
Teaching material agriculture food technology
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
NewMind AI Weekly Chronicles - August'25 Week I
Comunidade Salesforce São Paulo - Desmistificando o Omnistudio (Vlocity)
Per capita expenditure prediction using model stacking based on satellite ima...

JDBC – Java Database Connectivity

  • 1. JDBC – J ava D ata b ase C onnectivity Modified slides from Dr. Yehoshua Sagiv
  • 2. Introduction to JDBC JDBC is used for accessing databases from Java applications Information is transferred from relations to objects and vice-versa databases optimized for searching/indexing objects optimized for engineering/flexibility
  • 3. JDBC Architecture Java Application JDBC Oracle DB2 MySQL Oracle Driver DB2 Driver MySQL Driver Network We will use this one…
  • 4. JDBC Architecture (cont.) Java code calls JDBC library JDBC loads a driver Driver talks to a particular database An application can work with several databases by using all corresponding drivers Ideal: can change database engines without changing any application code (not always in practice) Application JDBC Driver
  • 5. JDBC Driver for Oracle Download Oracle JDBC driver from : http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/htdocs/jdbc101040.html To install simply download and put ojdbc14.jar in the class path
  • 6. Seven Steps Load the driver Define the connection URL Establish the connection Create a Statement object Execute a query using the Statement Process the result Close the connection
  • 7. Loading the Driver We can register the driver indirectly using the statement Class.forName( &quot;oracle.jdbc.driver.OracleDriver&quot; ); Class.forName loads the specified class When OracleDriver is loaded, it automatically creates an instance of itself registers this instance with the DriverManager Hence, the driver class can be given as an argument of the application
  • 8. An Example // A driver for imaginary1 Class.forName( &quot;ORG.img.imgSQL1.imaginary1Driver&quot; ); // A driver for imaginary2 Driver driver = new ORG.img.imgSQL2.imaginary2Driver(); DriverManager.registerDriver(driver); //A driver for MySQL Class.forName( &quot;com.mysql.jdbc.Driver&quot; );       imaginary1 imaginary2 Registered Drivers MySQL
  • 9. Connecting to the Database Every database is identified by a URL Given a URL, DriverManager looks for the driver that can talk to the corresponding database DriverManager tries all registered drivers, until a suitable one is found
  • 10. Connecting to the Database Connection con = DriverManager. getConnection( &quot;jdbc:imaginaryDB1&quot; ); imaginary1 imaginary2 Registered Drivers Oracle    acceptsURL( &quot;jdbc:imaginaryDB1&quot; )? We Use: DriverManager.getConnection(<URL>, <user>, <pwd>); Where <UR>L is : jdbc:oracle:thin:@dataserv.mscs.mu.edu:1521:cosmos
  • 11. Interaction with the Database We use Statement objects in order to Query the database Update the database Three different interfaces are used: Statement , PreparedStatement , CallableStatement All are interfaces, hence cannot be instantiated They are created by the Connection
  • 12. Querying with Statement The executeQuery method returns a ResultSet object representing the query result. Will be discussed later… String queryStr = &quot;SELECT * FROM employee &quot; + &quot;WHERE lname = ‘Wong'&quot; ; Statement stmt = con.createStatement(); ResultSet rs = stmt.executeQuery( queryStr );
  • 13. Changing DB with Statement String deleteStr = &quot;DELETE FROM employee &quot; + &quot;WHERE lname = ‘Wong'&quot; ; Statement stmt = con.createStatement(); int delnum = stmt.executeUpdate( deleteStr ); executeUpdate is used for data manipulation: insert, delete, update, create table, etc. (anything other than querying!) executeUpdate returns the number of rows modified
  • 14. About Prepared Statements Prepared Statements are used for queries that are executed many times They are parsed (compiled) by the DBMS only once Column values can be set after compilation Instead of values, use ‘ ? ’ Hence, Prepared Statements can be though of as statements that contain placeholders to be substituted later with actual values
  • 15. Querying with PreparedStatement String queryStr = &quot;SELECT * FROM employee &quot; + &quot;WHERE superssn= ? and salary > ? &quot; ; PreparedStatement pstmt = con.prepareStatement( queryStr ); pstmt.setString( 1 , &quot;333445555&quot; ); pstmt.setInt( 2 , 26000); ResultSet rs = pstmt.executeQuery();
  • 16. Updating with PreparedStatement String deleteStr = “ DELETE FROM employee &quot; + &quot;WHERE superssn = ? and salary > ?&quot; ; PreparedStatement pstmt = con.prepareStatement(deleteStr); pstmt.setString(1, &quot;333445555&quot; ); pstmt.setDouble(2, 26000); int delnum = pstmt.executeUpdate();
  • 17. Statements vs. PreparedStatements: Be Careful! Are these the same? What do they do? String val = &quot;abc&quot; ; PreparedStatement pstmt = con.prepareStatement( &quot;select * from R where A=?&quot; ); pstmt.setString(1, val ); ResultSet rs = pstmt.executeQuery(); String val = &quot;abc&quot; ; Statement stmt = con.createStatement( ); ResultSet rs = stmt.executeQuery( &quot;select * from R where A=&quot; + val);
  • 18. Statements vs. PreparedStatements: Be Careful! Will this work? No!!! A ‘?’ can only be used to represent a column value PreparedStatement pstmt = con.prepareStatement( &quot;select * from ?&quot; ); pstmt.setString(1, myFavoriteTableString);
  • 19. Timeout Use setQueryTimeOut(int seconds) of Statement to set a timeout for the driver to wait for a statement to be completed If the operation is not completed in the given time, an SQLException is thrown What is it good for?
  • 20. ResultSet ResultSet objects provide access to the tables generated as results of executing a Statement queries Only one ResultSet per Statement can be open at the same time! The table rows are retrieved in sequence A ResultSet maintains a cursor pointing to its current row The next() method moves the cursor to the next row
  • 21. ResultSet Methods boolean next() activates the next row the first call to next() activates the first row returns false if there are no more rows void close() disposes of the ResultSet allows you to re-use the Statement that created it automatically called by most Statement methods
  • 22. ResultSet Methods Type get Type (int columnIndex ) returns the given field as the given type indices start at 1 and not 0 ! Type get Type (String columnName ) same, but uses name of field less efficient For example: getString( columnIndex ) , getInt( columnName ) , getTime , getBoolean , getType ,... int findColumn(String columnName ) looks up column index given column name
  • 23. ResultSet Methods JDBC 2.0 includes scrollable result sets. Additional methods included are : ‘first’, ‘last’, ‘previous’, and other methods.
  • 24. ResultSet Example Statement stmt = con.createStatement(); ResultSet  rs  = stmt. executeQuery( &quot;select lname,salary from employees&quot; );      // Print the result while ( rs .next()) {  System.out.print(rs.getString(1) +  &quot;:&quot; );  System.out.println(rs.getDouble( “salary&quot; )); }
  • 25. Mapping Java Types to SQL Types SQL type Java Type CHAR, VARCHAR, LONGVARCHAR String NUMERIC, DECIMAL java.math.BigDecimal BIT boolean TINYINT byte SMALLINT short INTEGER int BIGINT long REAL float FLOAT, DOUBLE double BINARY, VARBINARY, LONGVARBINARY byte[] DATE java.sql.Date TIME java.sql.Time TIMESTAMP java.sql.Timestamp
  • 26. Null Values In SQL, NULL means the field is empty Not the same as 0 or &quot;&quot; In JDBC, you must explicitly ask if the last-read field was null ResultSet.wasNull( column ) For example, getInt( column ) will return 0 if the value is either 0 or NULL !
  • 27. Null Values When inserting null values into placeholders of Prepared Statements: Use the method setNull( index , Types. sqlType ) for primitive types (e.g. INTEGER , REAL ); You may also use the set Type ( index , null ) for object types (e.g. STRING , DATE ).
  • 28. ResultSet Meta-Data ResultSetMetaData rsmd = rs.getMetaData(); int numcols = rsmd .getColumnCount(); for (int i = 1 ; i <= numcols ; i++) { System.out.print( rsmd .getColumnLabel(i)+ &quot; &quot; ); } A ResultSetMetaData is an object that can be used to get information about the properties of the columns in a ResultSet object An example: write the columns of the result set
  • 29. Database Time Times in SQL are notoriously non-standard Java defines three classes to help java.sql.Date year, month, day java.sql.Time hours, minutes, seconds java.sql.Timestamp year, month, day, hours, minutes, seconds, nanoseconds usually use this one
  • 30. Cleaning Up After Yourself Remember to close the Connections, Statements, Prepared Statements and Result Sets con.close(); stmt.close(); pstmt.close(); rs.close()
  • 31. Dealing With Exceptions An SQLException is actually a list of exceptions catch (SQLException e) { while (e != null) { System.out.println(e.getSQLState()); System.out.println(e.getMessage()); System.out.println(e.getErrorCode()); e = e.getNextException(); } }
  • 32. Transactions and JDBC Transaction: more than one statement that must all succeed (or all fail) together e.g., updating several tables due to customer purchase If one fails, the system must reverse all previous actions Also can’t leave DB in inconsistent state halfway through a transaction COMMIT = complete transaction ROLLBACK = cancel all actions
  • 33. Example Suppose we want to transfer money from bank account 13 to account 72: PreparedStatement pstmt = con.prepareStatement( &quot;update BankAccount set amount = amount + ? where accountId = ?&quot; ); pstmt.setInt(1,-100); pstmt.setInt(2, 13); pstmt.executeUpdate(); pstmt.setInt(1, 100); pstmt.setInt(2, 72); pstmt.executeUpdate(); What happens if this update fails?
  • 34. Transaction Management Transactions are not explicitly opened and closed The connection has a state called AutoCommit mode if AutoCommit is true , then every statement is automatically committed if AutoCommit is false , then every statement is added to an ongoing transaction Default: true
  • 35. AutoCommit If you set AutoCommit to false, you must explicitly commit or rollback the transaction using Connection.commit() and Connection.rollback() Note: DDL statements (e.g., creating/deleting tables) in a transaction may be ignored or may cause a commit to occur The behavior is DBMS dependent setAutoCommit( boolean val )
  • 36. Scrollable ResultSet Statement createStatement( int resultSetType, int resultSetConcurrency) resultSetType : ResultSet.TYPE_FORWARD_ONLY -default; same as in JDBC 1.0 -allows only forward movement of the cursor -when rset.next() returns false, the data is no longer available and the result set is closed. ResultSet.TYPE_SCROLL_INSENSITIVE -backwards, forwards, random cursor movement. -changes made in the database are not seen in the result set object in Java memory. ResultSetTYPE_SCROLL_SENSITIVE -backwards, forwards, random cursor movement. -changes made in the database are seen in the result set object in Java memory.
  • 37. Scrollable ResultSet (cont’d) resultSetConcurrency: ResultSet.CONCUR_READ_ONLY This is the default (and same as in JDBC 1.0) and allows only data to be read from the database. ResultSet.CONCUR_UPDATABLE This option allows for the Java program to make changes to the database based on new methods and positioning ability of the cursor. Example: Statement stmt = conn.createStatement( ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); ResultSetrset= stmt.executeQuery( “SHOW TABLES”);
  • 38. Scrollable ResultSet (cont’d) public boolean absolute(int row) throws SQLException -If the given row number is positive, this method moves the cursor to the given row number (with the first row numbered 1). -If the row number is negative, the cursor moves to a relative position from the last row. -If the row number is 0, an SQLException will be raised . public boolean relative(int row) throws SQLException This method call moves the cursor a relative number of rows, either positive or negative. An attempt to move beyond the last row (or before the first row) in the result set positions the cursor after the last row (or before the first row). public boolean first() throws SQLException public boolean last() throws SQLException public boolean previous() throws SQLException public boolean next() throws SQLException
  • 39. Scrollable ResultSet (cont’d) public void beforeFirst() throws SQLException public void afterLast() throws SQLException public boolean isFirst() throws SQLException public boolean isLast() throws SQLException public boolean isAfterLast() throws SQLException public boolean isBeforeFirst() throws SQLException public int getRow() throws SQLException getRow() method retrieves the current row number: The first row is number 1, the second number 2, and so on.
  • 40. JDBC Usage in Industry Apace DbUtils ( http://jakarta.apache.org/commons/dbutils/ ) ORM (Object Relational Mappers): Hibernate ( http://www.hibernate.org/ ), JDO ( http://java.sun.com/products/jdo/ ), TopLink ( http://www.oracle.com/technology/products/ias/toplink/index.html )

Editor's Notes