Introduction to JDBC

 

Statement the statement is sent to the database server each time. (The object used for executing a static SQL statement and returning the results it produces )
PreparedStatement the statement is cached and then the execution path is pre determined on the database server allowing it to be executed multiple times in an efficient manner. An object that represents a precompiled SQL statement.
CallableStatement used for executing stored procedures on the database.
  1. The line below causes the JDBC driver from some jdbc vendor to be loaded into the application.

    • Class.forName( "xyz.somejdbcvendor.TheirJdbcDriver" );

  2. When a Driver class is loaded, it creates an instance of itself and registers it with the DriverManager. This can be done by including the needed code in the driver class's static block. e.g. DriverManager.registerDriver(Driver driver)

  3. When a connection is needed, one of the DriverManager.getConnection() methods is used to create a JDBC connection.

    Connection conn = DriverManager.getConnection( "jdbc:somejd
    bcvendor:TheirJdbcDriver", "myLogin", "myPassword" );

Statement stmt = conn.createStatement();
stmt.executeUpdate( "INSERT INTO MyTable( name ) VALUES ( 'my name' ) " );

 

 

Data is retrieved from the database using a database query mechanism. The example below shows creating a statement and executing a query.

 

Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery( "SELECT * FROM MyTable" );
while ( rs.next() ) {
int numColumns = rs.getMetaData().getColumnCount();
for ( int i = 1 ; i <= numColumns ; i++ ) {
//Column numbers start at 1.
//Also there are many methods on the result set to return
// the column as a particular type. Refer to the Sun documentation
// for the list of valid conversions.
System.out.println( "COLUMN " + i + " = " + rs.getObject(i) );
}
}
rs.close();
stmt.close();

 


Typically, however, it would be rare for a seasoned Java programmer to code in such a fashion. The usual practice would be to abstract the database logic into an entirely different class and to pass preprocessed strings (perhaps derived themselves from a further abstracted class) containing SQL statements and the connection to the required methods. Abstracting the data model from the application code makes it more likely that changes to the application and data model can be made independently.

An example of a PreparedStatement query. Using conn and class from first example.

 

PreparedStatement ps = null;

ResultSet rs = null;
try {
ps = conn.prepareStatement( "SELECT i.*, j.* FROM Omega i, Zappa j"
+ "WHERE i = ? AND j = ?" );
// In the prepared statement ps, the question mark denotes variable input,
// which can be passed through a parameter list, for example.
// The following replaces the question marks,
// with the string or int, before sending it to SQL.
// The first parameter corresponds to the nth occurrence of the ?,
// the second parameter tells Java to replace it with
// the second item.

ps.setString(1, "Poor Yorick");
ps.setInt(2, 8008);
// The ResultSet rs, receives the SQL Query response.
rs = ps.executeQuery();
while ( rs.next() ) {
int numColumns = rs.getMetaData().getColumnCount();
for ( int i = 1 ; i <= numColumns ; i++ ) {
//Column numbers start at 1.
//Also there are many methods on the result set to return
// the column as a particular type. Refer to the Sun documentation
// for the list of valid conversions.

System.out.println( "COLUMN " + i + " = " + rs.getObject(i) );
}
}
}
catch (SQLException e) {
// typical exception handling here
}
finally { // note that these resources need to be closed in the finally clause to avoid
try { // a resource leak since it should always be called
rs.close();
ps.close();
} catch( SQLException e){} // handle errors here or ignore them
}


 

For an example of a CallableStatement (to call stored procedures in the database), see the JDBC API Guide.

JDBC supports four categories of drivers:

1- The JDBC-to-ODBC bridge driver

Connects Java to a Microsoft ODBC (Open Database Connectivity) data source. The Java 2 Software Development Kit from Sun Microsystems,Inc. includes the JDBC-to-ODBC bridge driver (sun.jdbc.odbc.Jdbc-OdbcDriver). This driver typically requires the ODBC driver to be installed on the client computer and normally requires configuration of the ODBC data source. The bridge driver was introduced primarily to allow Java programmers to build data-driven Java applications before the database vendors had Type 3 and Type 4 drivers.

2 - Native-API,

 Partly Java drivers enable JDBC programs to use database-specific APIs (normally written in C or C++) that allow client programs to access databases via the Java Native Interface. This driver type translates JDBC into database-specific code. Type 2 drivers were introduced for reasons similar to the Type 1 ODBC bridge driver.

3 - JDBC-Net pure Java drivers

Take JDBC requests and translate them into a network protocol that is not database specific. These requests are sent to a server, which translates the database requests into a database-specific protocol.

4 - Native-protocol pure Java drivers

 Convert JDBC requests to database-specific network protocols, so that Java programs can connect directly to a database.

Type 3 and 4 drivers are preferred, because they are pure Java solutions.