- Java Database Connectivity
Java Database Connectivity (JDBC) is an API for the Java programming language that defines how a client may access a
database . It provides methods for querying and updating data in a database. JDBC is oriented towards relational databases.The Java 2 Platform, Standard Edition, version 1.4 (J2SE) includes the JDBC 3.0 API [http://java.sun.com/products/jdbc/jdbc-3_0-fr-spec-license.html] together with a reference implementation JDBC-to-ODBC Bridge, enabling connections to any ODBC-accessible data source in the JVM host environment. This Bridge is
native code (not Java),closed source , and only appropriate for experimental use and for situations in which no other driver is available, [http://java.sun.com/products/jdbc/overview.html] not least because it provides only a limited subset of the JDBC 3.0 API, [http://java.sun.com/products/jdbc/reference/faqs/index.html#2] , as it was originally built and shipped with JDBC 1.0 for use with old ODBC v2.0 drivers [http://java.sun.com/products/jdbc/reference/faqs/index.html#8] (ODBC v3.0 was released in 1996 [http://www.dbmsmag.com/9604d53.html] ).Overview
JDBC has been part of the Java Standard Edition since the release of JDK 1.1. The JDBC classes are contained in the
Java package Javadoc:SE|package=java.sql|java/sql. Starting with version 3.0, JDBC has been developed under theJava Community Process . JSR 54 specifies JDBC 3.0 (included in J2SE 1.4), JSR 114 specifies the JDBC Rowset additions, and JSR 221 is the specification of JDBC 4.0 (included in Java SE 6). [http://java.sun.com/products/jdbc/download.html#corespec40]JDBC allows multiple implementations to exist and be used by the same application. The API provides a mechanism for dynamically loading the correct Java packages and registering them with the JDBC Driver Manager. The Driver Manager is used as a connection factory for creating JDBC connections.
JDBC connections support creating and executing statements. These may be update statements such as
SQL 's CREATE, INSERT, UPDATE and DELETE, or they may be query statements such as SELECT. Additionally,stored procedures may be invoked through a JDBC connection. JDBC represents statements using one of the following classes:* – the statement is sent to the database server each and every time.
* – 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.
* – used for executingstored procedures on the database.Update statements such as INSERT, UPDATE and DELETE return an update count that indicates how many rows were affected in the database. These statements do not return any other information.
Query statements return a JDBC row result set. The row result set is used to walk over the result set. Individual columns in a row are retrieved either by name or by column number. There may be any number of rows in the result set. The row result set has metadata that describes the names of the columns and their types.
There is an extension to the basic JDBC API in the Javadoc:SE|package=javax.sql|javax/sql
Example
The method Javadoc:SE|member=forName(String)|java/lang|Class|forName(java.lang.String) is used to load the JDBC driver class. The line below causes the JDBC driver from "some jdbc vendor" to be loaded into the application. (Some JVMs also require the class to be instantiated with Javadoc:SE|name=.newInstance()|java/lang|Class|newInstance().)
In JDBC 4.0, it's no longer necessary to explicitly load JDBC drivers using Class.forName(). See [http://www.onjava.com/pub/a/onjava/2006/08/02/jjdbc-4-enhancements-in-java-se-6.html JDBC 4.0 Enhancements in Java SE 6]
When a Javadoc:SE|java/sql|Driver class is loaded, it creates an instance of itself and registers it with the Javadoc:SE|java/sql|DriverManager. This can be done by including the needed code in the driver class's
static
block. e.g.DriverManager.registerDriver(Driver driver)
Now when a connection is needed, one of the
DriverManager.getConnection()
methods is used to create a JDBC connection.The URL used is dependent upon the particular JDBC driver. It will always begin with the "jdbc:" protocol, but the rest is up to the particular vendor. Once a connection is established, a statement must be created.
Note that Connections, Statements, and ResultSets often tie up
operating system resources such as sockets or file descriptors. In the case of Connections to remote database servers, further resources are tied up on the server, e.g., cursors for currently open ResultSets.It is vital toclose()
any JDBC object as soon as it has played its part;garbage collection should not be relied upon.Forgetting toclose()
things properly results in spurious errors and misbehaviour.The above try-finally construct is a recommended code pattern to use with JDBC objects.Data is retrieved from the database using a database query mechanism. The example below shows creating a statement and executing a query.
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. Usingconn
and class from first example.When a database operation fails, an Javadoc:SE|java/sql|SQLException is raised. There is typically very little one can do to recover from such an error, apart from logging it with as much detail as possible. It is recommended that the SQLException be translated into an application domain exception (an unchecked one) that eventually results in a transaction rollback and a notification to the user.
Here are examples of host database types which Java can convert to with a function.
For an example of a
CallableStatement
(to call stored procedures in the database), see the Javadoc:SE-guide|jdbc/getstart/callablestatement.html|JDBC API Guide.JDBC Drivers
JDBC Drivers are client-side adaptors (they are installed on the client machine, not on the server) that convert requests from Java programs to a protocol that the DBMS can understand.
Types
There are commercial and free drivers available for most relational database servers. These drivers fall into one of the following types:
* Type 1, the JDBC-ODBC bridge
* Type 2, the Native-API driver
* Type 3, the network-protocol driver
* Type 4, the native-protocol driversInternal JDBC driver , driver embedded with JRE in Java-enabled SQL databases. Used for Java stored procedures.This does not belong to the above classification, although it would likely be either a type 2 or type 4 driver(depending on whether the database itself is implemented in Java or not). An example of this is the KPRBdriver supplied with Oracle RDBMS. "jdbc:default:connection" is a relatively standard way of referringmaking such a connection (at least Oracle and Apache Derby support it). The distinction here is that theJDBC client is actually running as part of the database being accessed, so access can be made directlyrather than through network protocols.Sources
* [http://www.SQLSummit.com/JDBCVend.htm SQLSummit.com] publishes list of drivers, including JDBC drivers and vendors
*Sun Microsystems provides a [http://developers.sun.com/product/jdbc/drivers list of some JDBC drivers and vendors]
*Simba Technologies ships an SDK for building custom JDBC Drivers for any custom/proprietary relational data source
* [http://www.datadirect.com/products/jdbc/index.ssp DataDirect Technologies] provides a comprehensive suite of fast Type 4 JDBC drivers for all major database
* [http://www.idssoftware.com/idsserver.html IDS Software] provides a Type 3 JDBC driver for concurrent access to all major databases. Supported features include resultset caching, SSL encryption, custom data source, dbShield.
* [http://www.inetsoftware.de/products/jdbc/ i-net software] provides fast Type 4 JDBC drivers for all major databases
*OpenLink Software ships JDBC Drivers for a variety of databases, including Bridges to other data access mechanisms (e.g., ODBC, JDBC) which can provide more functionality than the targeted mechanism
* [http://jdbaccess.com/ JDBaccess] is a Java persistence library forMySQL and Oracle which defines major database access operations in an easy usable API above JDBC
* [http://www.jnetdirect.com/products.php?op=jdbc JNetDirect] provides a suite of fully Sun J2EE certified high performance JDBC drivers.
*HSQL is aRDBMS with a JDBC driver and is available under a BSD license.External links
*
* APIJavadoc documentation
* API Javadoc documentation
*
Wikimedia Foundation. 2010.