| B.Tech. IT 4/8-R

Monday, March 11 , 2013 |

JAVA DATA BASE CONNECTIVITY (JDBC) JDBC  A Technology that is used to develop the database application using java.  JDBC is used to access the databases using java applications API  Collection of predefined methods, classes & interfaces are grouped together into several functional packages. These packages are called as a Java Standard Library (JSL) / Application Programming Interface (API)  It is a document that contains description of all the features of a product or software.  It can be created for applications, libraries, operating systems, etc.

APPLICATION

JDBC DRIVER

JDBC

RDBM e.g: Access, Mysql

Fig: JDBC ARCHITECTURE    

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 Page 0 of 45

Java Arrays

REQUIRED PACKAGE import java.sql.*; JDBC GENERAL ARCHITECTURE JDBC API

JDBC Driver

Java Program / Application

DB Fig: JDBC ARCHITECTURE JDBC  Developed by sun micro systems  It is purly wriiten in java language  JDBC is a Java API that is used to connect and execute query to the database.  JDBC API uses jdbc drivers to connects to the database.  It allows the java application to connect & execute the SQL statements  It is the combination of three areas, namely Java Internet Technology CS9256 Web Technology IT-4/8-S

Page 1 of 45

Java Arrays

Structured Query Language (SQL)  Every JDBC application / applet must have at least one JDBC driver & each driver is specific to the type of DBMS used.  However, the driver doesn’t directly associated with a database.  The driver interface just allows the JDBC application and DriverManager to access the database. DriverManager  It is provided by Javasoft  It is a static class, that gives the services to connect to JDBC drivers. ODBC (OPEN DATA BASE CONNECTIVITY)  Developed by Microsoft corporation  It is purly written in C language / native code  Used to connect & execute the sql statements Drawbacks  It is platform dependant & unsecured Importance of JDBC  Before JDBC, ODBC API was used to connect and execute query to the database.  But ODBC API uses ODBC driver that is written in C language which is plateform dependent and unsecured.  That is why Sun Microsystem has defined its own API (JDBC API) that uses JDBC driver written in Java language.

CS9256 Web Technology IT-4/8-S

Page 2 of 45

Java Arrays

JDBC DRIVERS  JDBC Driver is a software component that enables javaapplication to interact with the database.  There are 4 types of JDBC drivers: 1. JDBC-ODBC bridge driver 2. Native-API driver (partially java driver) 3. Network Protocol driver (fully java driver) 4. Thin driver (fully java driver)

1. JDBC-ODBC bridge driver  The JDBC-ODBC bridge driver uses ODBC driver to connect to the database.  The JDBC-ODBC bridge driver converts JDBC method calls into the ODBC function calls.

JDBC API

JAVA APPLICATION

JDBC-ODBC Bridge Driver

ODBC Driver

Vendor Database Library

Client Machine Client Mechine Fig: JDBC-ODBC Bridge

CS9256 Web Technology IT-4/8-S

Page 3 of 45

DB

Java Arrays

Advantages:  easy to use.  can be easily connected to any database. Disadvantages:  Performance degraded because JDBC method call is converted into the ODBC funcion calls.  The ODBC driver needs to be installed on the client machine. 2. Native-API driver (partially java driver)  The Native API driver uses the client-side libraries of the database.  The driver converts JDBC method calls into native calls of the database API.  It is not written entirely in java.

JDBC API

JAVA APPLICATION

Native API Driver

Vendor Database Library

Database

Client Machine Client Mechine Fig: Native API Driver Advantage:  performance upgraded than JDBC-ODBC bridge driver.

CS9256 Web Technology IT-4/8-S

Page 4 of 45

Java Arrays

Disadvantage:  The Native driver needs to be installed on the each client machine.  The Vendor client library needs to be installed on client machine. 3. Network Protocol driver (fully java driver)  The Network Protocol driver uses middleware (application server) that converts JDBC calls directly or indirectly into the vendor-specific database protocol.  It is fully written in java.

JDBC API

JAVA APPLICATION

Network Protocol Driver

ClientClient Machine

Middleware

DB

Server Side

Fig: Netowork Protocol Driver Advantage:  No client side library is required because of application server that can perform many tasks like auditing, load balancing, logging etc. Disadvantages:  Network support is required on client machine.  Requires database-specific coding to be done in the middle tier. CS9256 Web Technology IT-4/8-S

Page 5 of 45

Java Arrays

 Maintenance of Network Protocol driver becomes costly because it requires database-specific coding to be done in the middle tier. 4. Thin driver (fully java driver)  The thin driver converts JDBC calls directly into the vendor-specific database protocol.  That is why it is known as thin driver. It is fully written in Java language.  It is not written entirely in java.

JDBC API

JAVA APPLICATION

Thin Driver Database

Client Machine Client Mechine Fig: Thin Driver Advantage:  Better performance than all other drivers.  No software is required at client side or server side. Disadvantage:  Drivers depends on the Database.

CS9256 Web Technology IT-4/8-S

Page 6 of 45

Java Arrays

SEVEN STEPS TO JDBC 1. Importing the java.sql.* package 2. Loading the driver 3. Establishing the DB connection 4. Creating a statement 5. Executing a statement 6. Retrieving the results 7. Closing the connection & statement 1. Importing the java.sql.* package The package java.sql.* contains the JDBC base API classes. e.g import java.sql.*; 2. Loading the driver  Registering the driver. It is done by calling the static method forName() of class class  The forName() method of Class class is used to register the driver class.  It is a static method of Class  This method is used to dynamically load the driver class.  It takes only one argument. The argument must be a driver class.  Return type

: void

e.g String driver=”sun.jdbc.odbc.JdbcOdbcDriver”; //JDBC Driver Class.forName(driver); 3. Establishing the DB connection  Next step is to connect the database at a specified URL.  Eveny database is identified by a URL. CS9256 Web Technology IT-4/8-S

Page 7 of 45

Java Arrays

 This is done by calling the getConnection() method of DriverManager class.  The getConnection() method takes only one argument  JDBC connections are specified by a Uniform Resource Locator (URL), which has the format Syntax jdbc:: where, subprotocol  the kind of database connectivity dsn  Data Source Name (contains information about the database) e.g String url=”jdbc:odbc:college”; // db URL Connection con=DriverManager.getConnection(url); 4. Creating a statement  The createStament() method of the Connection class is used to create a Statement object, for executing SQL statements  After making connection to the database, we are ready to create SQL statements  This can be done by using the methods of statement object e.g Statement st=con.createStatement(); // runnable state 5 & 6. Executing a Query Statement & Retrieving the Results  The executeQuery() method of Statement interface is used to execute queries to the database.

CS9256 Web Technology IT-4/8-S

Page 8 of 45

Java Arrays

 This method returns the object of ResultSet that can be used to get all the rocords of a table. e.g ResultSet rs=stmt.executeQuery("select * from emp" ); while(rs.next()){ System.out.println(rs.getInt(1)+ " " +rs.getString(2)); }

6. Retrieving the results  The results must be processed after executing the SQL statements  Some statements (insert, delete, update) will return only an integer value containing the number of rows affected by that statement  SQL query (e.g: select) is used to return the result set containing the results of the query  The result set is made up of columns / rows. 6.1 Important Methods 1. next()  It is an instance method of the ResultSet class  Just check whether the next row is available or not  It returns current row if next row is present else it returns null value  Return type

: boolean

7. Closing the connection & statement  The connection object, resultset & all the Statement objects contain a close() method which should be called to ensure that the database system frees all the associated resources properly. CS9256 Web Technology IT-4/8-S

Page 9 of 45

Java Arrays

 By closing connection object statment and ResultSet will be closed automatically. close()  The close() method of Connection interface is used to close the connection  Return type : void e.g con.close(); MAIN ELEMENTS  Java Application  Standard java program / AWT / Swing JSP / Servlets  JDBC Driver Manager  Acts as an interface between user and drivers  Loading the driver  Registering the driver  JDBC Driver  Driver only talks to database  Connects to actual database  Execute the JDBC calls  RDBMS  e.g: ms access, sqlserver, mysql, .. JDBC CLASSES / COMPONENTS 1. Connection 2. Statement 3. ResultSet CS9256 Web Technology IT-4/8-S

Page 10 of 45

Java Arrays

1. CONNECTION CLASS  This class is responsible for opening and closing the DB connection. Declaration Connection con; IMPORTANT METHODS (i)

getConnection(Driver class)  open the database at the specified URL.  This method is called by DriverManager class  Return type: Connection object e.g con=DriverManager.getConnection(url,user,pwd);

Where, url  location of the DB user  user name of the DB (optional) pwd  password of the DB (optional) (ii)

close() close the database connection e.g con.close();

2. STATEMENT CLASS  This class is responsible for sending the SQL query to the database  It gives the methods to execute queries with the database. TYPES STATEMENT / SIMPLE STATEMENT PREPARED STATEMENT CALLABLE STATEMENT CS9256 Web Technology IT-4/8-S

Page 11 of 45

Java Arrays

(a) STATEMENT Declaration Statement st; st=con.createStatemen() ;

// sends SQL commands to database

DATA RETRIEVAL EXAMPLE String sql=”select * from cric”; pt=con.createStament(); pt.executeQuery(sql);

// execute the sql query

DATA MANIPULATION EXAMPLE String sql=”update cric set name=”+pname+ “where id=”+pid; pt=con.createStament(); pt.executeUpdate(sql);

// execute & update the sql query

IMPORTANT METHODS (i)

ResultSet executeQuery(String sql)  It is used to execute SELECT query.  It returns the object of ResultSet  Return Type: ResultSet

(ii)

int executeUpdate(String sql)  It is used to execute specified query. It may be create, insert, delete, drop, update, etc.  It returns the number of rows changed  Return Type: int

CS9256 Web Technology IT-4/8-S

Page 12 of 45

Java Arrays

DIFFERENCES S.N executeQuery() 1. It is used for data retrieval (e.g: select query) 2. 3.

It returns ResultSet object It uses value to represent the value in column

executeUpdate() It is used for data manipulation (e.g: insert, delete, create, update,..) It returns int It uses ? to represent the value in column

(b) PREPARED STATEMENT  It is derived from more general class Statement class  It is used to execute a parameterized query  If we want to execute a query multiple times, then prepared statement is a better choice than statement. DECLARATION PreparedStatement pt; DATA RETRIEVAL EXAMPLE String sql=”select * from cric”; pt=con.prepareStament(sql); pt.executeQuery();

// execute the sql query

DATA MANIPULATION EXAMPLE String sql=”update cric set name=? where id=?”; pt=con.prepareStament(sql); pt.setString(1,”Sachin”); pt.setInt(2,101); pt.executeUpdate(); CS9256 Web Technology IT-4/8-S

// execute & update the sql query Page 13 of 45

Java Arrays

DIFFERENCES S.N STATEMENT 1. General class 2. 3. 4. 5.

PREPAREDSTATEMENT Derived from Statement class (super class) It increase the execution time It reduces the the execution time It does not take argument at the time It takes an argument at the of creation time of creation It uses value to represent the value It uses placeholder (?) to in column represent the value in column These statements are compiled These statements are many times compiled only once.

(c) CALLABLE STATEMENT  It is used to execute a stored procedure  It conatins a method called prepareCall()

CS9256 Web Technology IT-4/8-S

Page 14 of 45

Java Arrays

STATEMENT vs PREPAREDSTATEMENT

CS9256 Web Technology IT-4/8-S

Page 15 of 45

Java Arrays

3. RESULTSET  This class is used to maintain the database results Process the results  Result of a select statement (rows /columns) returned as a ResultSet object e.g: ResultSet rs=st.executeQuery(“select * from cric”);  Step through each row in the result e.g rs.next();  Get column values in a row e.g String uname=rs.getString(2); OR String uname=rs.getString(“name”); Sample Database (info.mdb : cric table) id 1. 2. 3. 4.

name sehwag dinda watson raina

country india india aus india

Note  The getString() method will retrieve (get) the value stored in the COLUMN “name” in the current row of rs (ResultSet).

CS9256 Web Technology IT-4/8-S

Page 16 of 45

Java Arrays

JDBC TYPES

Figure 1:JDBC TYPES

CS9256 Web Technology IT-4/8-S

Page 17 of 45

Java Arrays

JDBC Components

CS9256 Web Technology IT-4/8-S

Page 18 of 45

Java Arrays

I. DATA RETRIEVAL 1. SOURCE CODE package CRUD; import java.sql.*; import java.io.*; public class JDisp { Connection con; Statement st; ResultSet rs; // driver class String driver="sun.jdbc.odbc.JdbcOdbcDriver"; // DB url / DSN name String dburl="jdbc:odbc:india"; public void dbconnect() { try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); } catch(Exception e) { System.out.println(e.getMessage()); } } public void show()throws SQLException { // sql statement String query="select * from player"; dbconnect(); // runnable state: send sql statement to DB st=con.createStatement(); // execute sql statements & store the results into resultset object CS9256 Web Technology IT-4/8-S

Page 19 of 45

Java Arrays

rs=st.executeQuery(query); System.out.println("-----------------------------------------------"); System.out.println("ID\tName\tAverage\tPlace"); // looping the result set using while-loop while(rs.next()) { System.out.println(rs.getString(1)+"\t"+rs.getString(2)+"\t"+rs.getString(3)+"\t"+rs. getString(4)); } System.out.println("-----------------------------------------------"); } public static void main(String[] args)throws SQLException { System.out.println("=================================="); System.out.println("JDBC : Data Retrieval"); System.out.println("=================================="); JDisp obj=new JDisp(); obj.show(); } }

CS9256 Web Technology IT-4/8-S

Page 20 of 45

Java Arrays

2. OUTPUT

II. DATA RETRIEVAL USING PREPAREDSTATEMENT 1. SOURCE CODE package CRUD; import java.sql.*; public class JDisp2 { Connection con; PreparedStatement pt; ResultSet rs; // driver class String driver="sun.jdbc.odbc.JdbcOdbcDriver"; // database URL String dburl="jdbc:odbc:india"; public void disp() CS9256 Web Technology IT-4/8-S

Page 21 of 45

Java Arrays

{ try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); // SQL query statement String query="select * from player"; // add the sql query to pt=con.prepareStatement(query); rs=pt.executeQuery(); System.out.println("-----------------------------------------------"); System.out.println("ID\tName\tAverage\tPlace"); while(rs.next()) { System.out.println(rs.getString(1)+"\t"+rs.getString(2)+"\t"+rs.getString(3)+"\t"+rs. getString(4)); } System.out.println("-----------------------------------------------"); } catch(Exception e) { System.out.println(e.getMessage()); } } public static void main(String[] args)throws SQLException { System.out.println("======================================="); System.out.println("\tJDBC : Data Retrieval using prepareStatement"); System.out.println("======================================="); JDisp2 obj=new JDisp2(); obj.disp(); } CS9256 Web Technology IT-4/8-S

Page 22 of 45

Java Arrays

}

2. OUTPUT

III. DATA INSERTION 1. SOURCE CODE package CRUD; import java.sql.*; import java.io.*; public class JInsert { Connection con; Statement st; ResultSet rs; String driver="sun.jdbc.odbc.JdbcOdbcDriver"; CS9256 Web Technology IT-4/8-S

Page 23 of 45

Java Arrays

String dburl="jdbc:odbc:india"; DataInputStream ds=new DataInputStream(System.in); JDisp dd=new JDisp(); public void dbconnect() { try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); } catch(Exception e) { sop(e.getMessage()); } } public void insertdata()throws Exception { int row=0; String ch=""; // load the driver & connect the database using “dbconnect()” dbconnect(); sp("Enter the ID \t\t: "); // get the 1st input from keyboard int id=Integer.parseInt(ds.readLine()); // get the 2nd input from keyboard sp("Enter the Player name \t: "); String pname=ds.readLine(); // get the 3rd input from keyboard sp("Enter the Avg \t\t: "); String str=ds.readLine(); int pavg=Integer.parseInt(str); // get the 4th input from keyboard sp("Enter the Player Place \t: "); CS9256 Web Technology IT-4/8-S

Page 24 of 45

Java Arrays

String ploc=ds.readLine(); st=con.createStatement(); // insert sql query String iquery="insert into player(ID,Name,Avg,Place) values('"+id+"','"+pname+"','"+pavg+"','"+ploc+"')"; // execute sql query using statement object row=st.executeUpdate(iquery); // check whether row is added or not using returned int value if(row!=0) { sop("One Row is successfully inserted..."); sp("Do u want to see the updated records : press Yes / No : "); ch=ds.readLine(); if(ch.equalsIgnoreCase("yes")) // show the db results using JDisp class of CRUD package dd.show(); } else sop("Error in inserting data in database..."); } public static void main(String[] args)throws Exception,SQLException { sop("==============================================="); sop("JDBC : Data Insertion"); sop("==============================================="); JInsert obj=new JInsert(); // call the instance method using object obj.insertdata(); } static void sop(String str) { System.out.println(str); } static void sp(String str) { System.out.print(str); CS9256 Web Technology IT-4/8-S

Page 25 of 45

Java Arrays

} }

2. OUTPUT

CS9256 Web Technology IT-4/8-S

Page 26 of 45

Java Arrays

IV. DATA INSERTION USING PERPARED STATEMENT 1. SOURCE CODE package CRUD; import static CRUD.JInsert.sp; import java.io.DataInputStream; import java.sql.*; public class JInsert2 { Connection con; PreparedStatement pt; ResultSet rs; String driver="sun.jdbc.odbc.JdbcOdbcDriver"; String dburl="jdbc:odbc:india"; DataInputStream ds=new DataInputStream(System.in); // Container class JDisp dd=new JDisp(); public void insertdata2() { try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); int row=0; String ch=""; // get the 1st input from keyboard sp("Enter the ID \t\t: "); int id=Integer.parseInt(ds.readLine()); // get the 2nd input from keyboard sp("Enter the Player name \t: "); String pname=ds.readLine(); // get the 3rd input from keyboard sp("Enter the Avg \t\t: "); CS9256 Web Technology IT-4/8-S

Page 27 of 45

Java Arrays

String str=ds.readLine(); int pavg=Integer.parseInt(str); // get the 4th input from keyboard sp("Enter the Player Place \t: "); String ploc=ds.readLine(); // insert query details String iquery="insert into player(ID,Name,Avg,Place) values(?,?,?,?)"; // prepared statement creation pt=con.prepareStatement(iquery); // set the value to 1st column pt.setInt(1, id); // set the value to 2nd column pt.setString(2, pname); // set the value to 3rd column pt.setInt(3, pavg); // set the value to 4th column pt.setString(4, ploc); // execute the sql query using preparedstatement object row=pt.executeUpdate(); if(row!=0) { System.out.println("One Row is successfully inserted..."); sp("Do u want to see the updated records : press Yes / No : "); ch=ds.readLine(); if(ch.equalsIgnoreCase("yes")) // show the db results using JDisp class of CRUD package dd.show(); } else System.out.println("Error in inserting data in database..."); } catch(Exception e) { System.out.println(e.getMessage()); } } CS9256 Web Technology IT-4/8-S

Page 28 of 45

Java Arrays

public static void main(String[] args)throws Exception,SQLException { System.out.println("========================================="); System.out.println("JDBC : Data Insertion using Prepared Stateent"); System.out.println("========================================="); new JInsert2().insertdata2(); } } 2. OUTPUT

CS9256 Web Technology IT-4/8-S

Page 29 of 45

Java Arrays

V. DATA SEARCHING 1. SOURCE CODE package CRUD; import java.io.*; import java.sql.*; public class JSearch { Connection con; Statement st; ResultSet rs; String driver="sun.jdbc.odbc.JdbcOdbcDriver"; String dburl="jdbc:odbc:india"; DataInputStream ds=new DataInputStream(System.in); int no; public void finddata()throws Exception { int row=0; String ch; try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); System.out.print("Enter the ID to search : "); no=Integer.parseInt(ds.readLine()); String sql="select * from player where ID="+no; st=con.createStatement(); // execute the query rs=st.executeQuery(sql); boolean flag=false; while(rs.next()) { if(rs.getInt(1)==no) { flag=true; CS9256 Web Technology IT-4/8-S

Page 30 of 45

Java Arrays

} } if(flag==true) { System.out.println("Given key is found..."); System.out.print("Do u want to see the particular record : press Yes / No : "); ch=ds.readLine(); if(ch.equalsIgnoreCase("yes")) display(); } else { System.out.println("Given ID is not found..."); con.close(); st.close(); } } catch(Exception e) { System.out.println(e.getMessage()); } } public void display()throws SQLException { System.out.println("-----------------------------------------------"); System.out.println("ID\tName\tAverage\tPlace"); String sql="select * from player where ID="+no; st=con.createStatement(); rs=st.executeQuery(sql); System.out.println("-----------------------------------------------"); while(rs.next()) { System.out.println(rs.getString(1)+"\t"+rs.getString(2)+"\t"+rs.getString(3)+"\t"+rs. getString(4)); } CS9256 Web Technology IT-4/8-S

Page 31 of 45

Java Arrays

System.out.println("-----------------------------------------------"); con.close(); st.close(); } public static void main(String[] args)throws Exception,SQLException { System.out.println("==================================="); System.out.println("\t\tJDBC : Data Searching"); System.out.println("==================================="); new JSearch().finddata(); } } 2. OUTPUT 2.1 IF ID IS FOUND

CS9256 Web Technology IT-4/8-S

Page 32 of 45

Java Arrays

2.2 IF ID IS NOT FOUND

VI. DATA DELETION 1. SOURCE CODE package CRUD; import java.sql.*; import java.io.*; public class JDelete { Connection con; Statement st; ResultSet rs; String driver="sun.jdbc.odbc.JdbcOdbcDriver"; String dburl="jdbc:odbc:india"; DataInputStream ds=new DataInputStream(System.in); JDisp dd=new JDisp(); int no; public void removeData() { String ch; int r=0; try { CS9256 Web Technology IT-4/8-S

Page 33 of 45

Java Arrays

// Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); System.out.print("Enter the ID to delete : "); no=Integer.parseInt(ds.readLine()); String dquery="delete from player where ID="+no; st=con.createStatement(); r=st.executeUpdate(dquery); if(r!=0) { System.out.println("One Row is successfully deleted..."); System.out.println("Do u want to see the updated records : press Yes / No : "); ch=ds.readLine(); if(ch.equalsIgnoreCase("yes")) dd.show(); } else System.out.println("Sorry given record is not found..."); } catch(Exception e) { System.out.println(e.getMessage()); } } public static void main(String[] args)throws Exception,SQLException { System.out.println("================================"); System.out.println("\t\tJDBC : Data Deletion"); System.out.println("================================"); new JDelete().removeData(); } } CS9256 Web Technology IT-4/8-S

Page 34 of 45

Java Arrays

2. OUTPUT 2.1 IF ID IS FOUND

2.2 IF ID IS NOT FOUND

CS9256 Web Technology IT-4/8-S

Page 35 of 45

Java Arrays

VII. DATA DELETION USING PREPARED STATEMENT 1. SOURCE CODE package CRUD; import java.io.*; import java.sql.*; public class JDelete2 { Connection con; PreparedStatement pt; ResultSet rs; String driver="sun.jdbc.odbc.JdbcOdbcDriver"; String dburl="jdbc:odbc:india"; DataInputStream ds=new DataInputStream(System.in); JDisp dd=new JDisp(); int no; public void deleteData() { String ch; int r=0; try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); System.out.print("Enter the ID to delete : "); no=Integer.parseInt(ds.readLine()); String dsql="delete from player where ID=?"; pt=con.prepareStatement(dsql); pt.setInt(1,no); r=pt.executeUpdate(); if(r!=0) { System.out.println("One Row is successfully deleted..."); System.out.println("Do u want to see the updated records : press Yes / No : "); CS9256 Web Technology IT-4/8-S

Page 36 of 45

Java Arrays

ch=ds.readLine(); if(ch.equalsIgnoreCase("yes")) dd.show(); } else System.out.println("Sorry given record is not found..."); } catch(Exception e) { System.out.println(e.getMessage()); } } public static void main(String[] args)throws Exception,SQLException { System.out.println("=========================================="); System.out.println("\tJDBC : Data Deletion using PreparedStatement"); System.out.println("=============================================="); new JDelete2().deleteData(); } }

CS9256 Web Technology IT-4/8-S

Page 37 of 45

Java Arrays

2. OUTPUT 2.1 IF ID IS FOUND

2.2 IF ID IS NOT FOUND

CS9256 Web Technology IT-4/8-S

Page 38 of 45

Java Arrays

VII. DATA UPDATION 1. SOURCE CODE package CRUD; import java.sql.*; import java.io.*; public class JUpdate { Connection con; Statement st; String driver="sun.jdbc.odbc.JdbcOdbcDriver"; String dburl="jdbc:odbc:india"; DataInputStream ds=new DataInputStream(System.in); JDisp dd=new JDisp(); public void dbconnect() { try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); } catch(Exception e) { System.out.println(e.getMessage()); } } public void updatedata()throws Exception { int row=0; String ch=""; dbconnect(); System.out.print("Enter the ID number to update \t: "); int id=Integer.parseInt(ds.readLine()); System.out.print("Enter the new name to update \t: "); String pname=ds.readLine(); CS9256 Web Technology IT-4/8-S

Page 39 of 45

Java Arrays

System.out.print("Enter the new place to update \t: "); String place=ds.readLine(); String sql2="update player set Name='"+pname+"' , Place='"+place+"' where ID="+id; // String sql="update player set Name='"+pname+"' where ID="+id; st=con.createStatement(); row=st.executeUpdate(sql2); if(row!=0) { System.out.println("One Row is successfully updated..."); System.out.print("Do u want to see the updated records : press Yes / No : "); ch=ds.readLine(); if(ch.equalsIgnoreCase("yes")) // show the db results using JDisp class of CRUD package dow(); } else System.out.println("Given record is not found..."); } public static void main(String[] args)throws Exception,SQLException { System.out.println("============================="); System.out.println("\tJDBC : Data Updation"); System.out.println("============================="); JUpdate obj=new JUpdate(); obj.updatedata(); } }

CS9256 Web Technology IT-4/8-S

Page 40 of 45

Java Arrays

2. OUTPUT 2.1 IF ID IS FOUND

2.2 IF ID IS NOT FOUND

CS9256 Web Technology IT-4/8-S

Page 41 of 45

Java Arrays

VIII. DATA UPDATION USING PREPARED STATEMENT 1. SOURCE CODE package CRUD; import java.io.*; import java.sql.*; public class JUpdate3 { Connection con; PreparedStatement ps; String driver="sun.jdbc.odbc.JdbcOdbcDriver"; String dburl="jdbc:odbc:india"; String name,ch; int id,r; DataInputStream ds=new DataInputStream(System.in); JDisp dd=new JDisp(); public JUpdate3() { try { // Load the Driver Class.forName(driver); // Connect the DB using dburl con=DriverManager.getConnection(dburl); System.out.println("DB connected..."); } catch(Exception e) { System.out.println(e.getMessage()); } } public void change()throws Exception { System.out.print("Enter the ID number to update \t: "); id=Integer.parseInt(ds.readLine()); System.out.print("Enter the new name to update \t: "); name=ds.readLine(); // update query CS9256 Web Technology IT-4/8-S

Page 42 of 45

Java Arrays

String usql="update player set Name=? where ID=?"; // creating prepared statement ps=con.prepareStatement(usql); // set the values to variables ps.setString(1,name); ps.setInt(2,id); // update the database using the methods of prepared statement r=ps.executeUpdate(); if(r!=0) { System.out.println("One Row is successfully updated..."); System.out.print("Do u want to see the updated records : press Yes / No : "); ch=ds.readLine(); if(ch.equalsIgnoreCase("yes")) { // show the db results using JDisp class of CRUD package dd.show(); } } else System.out.println("Given record is not found..."); } public static void main(String[] args)throws Exception,SQLException { System.out.println("======================================="); System.out.println("\tJDBC : Data Updation using Prepare Statement"); System.out.println("========================================"); JUpdate3 obj=new JUpdate3(); // call the instance method obj.change(); } }

CS9256 Web Technology IT-4/8-S

Page 43 of 45

Java Arrays

2. OUTPUT 2.1 IF ID IS FOUND

2.2 IF ID IS NOT FOUND

CS9256 Web Technology IT-4/8-S

Page 44 of 45

Java JDBC CAI 25.04.2013.pdf

... its own API (JDBC API). that uses JDBC driver written in Java language. Page 3 of 45. Java JDBC CAI 25.04.2013.pdf. Java JDBC CAI 25.04.2013.pdf. Open.

986KB Sizes 1 Downloads 169 Views

Recommend Documents

JDBC ( JAVA Database Connectivity )
the column to update and the new value to put in that column. As with the ResultSet.getXXX methods, the parameter designating the column may be either the column name or the column number. There is a different. updateXXX method for updating each data

JDBC ( JAVA Database Connectivity )
Java API that can access any kind of tabular data, especially data stored in a Relational Database. ... 1- Data Manipulation Language (DML) : which deals with ...

Java Data Access—JDBC, JNDI, and JAXP
For general information on Hungry Minds' products and services please ...... and retrieve Java objects from a B−tree storage structure stored on a hard drive.

Java Data Access—JDBC, JNDI, and JAXP
Bachelor of Science degree from James Madison University in 1990, and his Master of Science ...... Companies also build online stores using live inventory levels that sell directly ..... Rows represent entries like patient medical records or customer

Java Programming with Oracle JDBC By GiantDino
software for free. • Better yet, sign up for a technology track or two. Technology tracks cost $200 each. For your $200, you get four updates a year on a CD of all the ..... has security issues. It's common for programmers to have problems establis

cai, xiaodong - GitHub
I designed and assembled the system and developed Android app, code in the ... ARM development board and a data transmission system from hardware driver ...

JDBC Driver.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. JDBC Driver.pdf.

Cai etal2014.XSEDE.FeatureSelector_Xsede14_pub.pdf ...
Page 1 of 7. FeatureSelector: an XSEDE-Enabled Tool for. Massive Game Log Analysis. Y. Dora Cai. University of Illinois. 1205 W Clark Street. Urbana, IL 61801. 1-217-265-5103. [email protected]. Bettina Cassandra Riedl. LMU Munich. Ludwigstraße 2

Cai etal 2015 Cognition.pdf
that more recent research has managed to discriminate. these accounts. To determine whether people build syntac- tic representations for missing elements in a ...

CP - CAI-2017.pdf
présentation des vainqueurs sur la carrière Prince Albert. - Trophée Yves Duveau - Challenge National d'Attelage d'Anes. 14 attelages, du débutants aux ...

LP-JDBC-Clase 1.pdf
Sign in. Loading… Whoops! There was a problem loading more pages. Retrying... Whoops! There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. LP-JDBC-Clase 1.pdf.

types of jdbc drivers pdf
Page 1. Whoops! There was a problem loading more pages. types of jdbc drivers pdf. types of jdbc drivers pdf. Open. Extract. Open with. Sign In. Main menu.

CAI 4th Quarter Magazine.pdf
behavior to be a great manager. All it. takes is a little ... Fountain Lakes Community Association. Secretary ... CAI 4th Quarter Magazine.pdf. CAI 4th Quarter ...

Huong dan cai dat Teamviewer.PDF
Page 1 of 1. Huong dan cai dat Teamviewer.PDF. Huong dan cai dat Teamviewer.PDF. Open. Extract. Open with. Sign In. Main menu. Displaying Huong dan cai ...

Cai Connell 2015 Cognition.pdf
not themselves visual, and rather are handled by a multi- modal or supramodal system that draws perceptual input. from visual, haptic, or auditory modalities (or ...

PDF Download JDBC Pocket Reference Full Books
Book synopsis. Paperback. Pub Date: 2003 Pages: 152 Publisher: OReilly Media JDBC - the Java Database Connectivity specification - is a complex set of ...

Desaparecidos-1-Quando-Cai-o-Raio.pdf
Então eu fiz o que qualquer melhor amiga faria nas mesmas circunstâncias. Eu. o empurrei e bati nele. Não é como se Jeff Day não merecesse ser esmurrado, ...

KHAI HUNG - CAI AM DAT SH-9.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. KHAI HUNG ...

CAI Evaluation Report 2012-2015.pdf
Executive Director. AFAO. Whoops! There was a problem loading this page. CAI Evaluation Report 2012-2015.pdf. CAI Evaluation Report 2012-2015.pdf. Open.

CAI-DAT-BIEN-TAN-DELTA-VFD-L.pdf
1-09 Thôøi gian taêng toác laàn 1(Tacc1) Ξ 0.1 ñeán 600 Sec 10. 1-10 Thôøi gian giaûm toác laàn 1 (Tdec1) Ξ 0.1 ñeán 600 Sec 10. 1-11 Thôøi gian taêng toác laàn 2 (Tacc 2) Ξ 0.1 ñeán 600 Sec 10. 1-12 Thôøi gian giaûm toác

HUONG DAN CAI DAT VA SU DUNG CAMERA VSTARCAM TREN ...
HUONG DAN CAI DAT VA SU DUNG CAMERA VSTARCAM TREN ANDROID.pdf. HUONG DAN CAI DAT VA SU DUNG CAMERA VSTARCAM TREN ...