JDBC driver

JDBC driver

A JDBC driver is a software component enabling a Java application to interact with a database. [ [http://java.sun.com/javase/technologies/database/ "Java SE Technologies - Database"] ]

To connect with individual databases, JDBC (the Java Database Connectivity API) requires drivers for each database. The JDBC driver gives out the connection to the database and implements the protocol for transferring the query and result between client and database.

Type 1 Driver - JDBC-ODBC bridge

The JDBC type 1 driver, also known as the JDBC-ODBC bridge, is a database driver implementation that employs the ODBC driver to connect to the database. The driver converts JDBC method calls into ODBC function calls. The bridge is usually used when there is no pure-Java driver available for a particular database.

The driver is platform-dependent as it makes use of ODBC which in turn depends on native libraries of the underlying operating system the JVM is running upon. Also, use of this driver leads to other installation dependencies; for example, ODBC must be installed on the computer having the driver and the database must support an ODBC driver. The use of this driver is discouraged if the alternative of a pure-Java driver is available. The other implication is that any application using a type 1 driver is non-portable given the binding between the driver and platform.

Type 1 is the simplest of all but platform specific e.g. only to Microsoft platform.

Functions

*Translates query obtained by JDBC into corresponding ODBC query, which is then handled by the ODBC driver.
*Sun provides a JDBC-ODBC Bridge driver. sun.jdbc.odbc.JdbcOdbcDriver. This driver is native code and not Java, and is closed source.
*Client -> JDBC Driver -> ODBC Driver -> Database
*There is some overhead associated with the translation work to go from JDBC to ODBC.

Advantages

*Almost any database for which ODBC driver is installed, can be accessed.
*A type 1 driver is easy to install.

Disadvantages

*Performance overhead since the calls have to go through the JDBC overhead bridge to the ODBC driver, then to the native db connectivity interface.
*The ODBC driver needs to be installed on the client machine.
*Considering the client-side software needed, this might not be suitable for applets.
*Will not be suitable for internet applications.

Type 2 Driver - Native-API Driver specification

The JDBC type 2 driver, also known as the Native-API driver, is a database driver implementation that uses the client-side libraries of the database. The driver converts JDBC method calls into native calls of the database API.

The type 2 driver is not written entirely in Java as it interfaces with non-Java code that makes the final database calls. The driver is compiled for use with the particular operating system. For platform interoperability, the Type 4 driver, being a full-Java implementation, is preferred over this driver.

However the type 2 driver provides more functionality and better performance than the type 1 driver as it does not have the overhead of the additional ODBC function calls.

Functions

*This type of driver converts JDBC calls into calls to the client API for that database.
*Client -> JDBC Driver -> Vendor Client DB Library -> Database

Advantages

* Better performance than Type 1 since no JDBC to ODBC translation is needed.

Disadvantages

*The vendor client library needs to be installed on the client machine.
*Cannot be used in web-based application due the client side software needed.
*Not all databases have a client side library

Type 3 Driver - Network-Protocol Driver

The JDBC type 3 driver, also known as the Pure Java Driver for Database Middleware, is a database driver implementation which makes use of a middle-tier between the calling program and the database. The middle-tier (application server) converts JDBC calls directly or indirectly into the vendor-specific database protocol.

This differs from the type 4 driver in that the protocol conversion logic resides not at the client, but in the middle-tier. Like type 4 drivers, the type 3 driver is written entirely in Java.The same driver can be used for multiple databases. It depends on the number of databases the middleware has been configured to support. The type 3 driver is platform-independent as the platform-related differences are taken care by the middleware. Also, making use of the middleware provides additional advantages of security and firewall access.

Functions

*Follows a three tier communication approach.
*Can interface to multiple databases - Not vendor specific.
*The JDBC Client driver written in java, communicates with a middleware-net-server using a database independent protocol, and then this net server translates this request into database commands for that database.
*Thus the client driver to middleware communication is database independent.
*Client -> JDBC Driver -> Middleware-Net Server -> Any Database

Advantages

*Since the communication between client and the middleware server is database independent, there is no need for the vendor db library on the client machine. Also the client to middleware needn't be changed for a new database.
*The Middleware Server (which can be a full fledged J2EE Application server) can provide typical middleware services like caching (connections, query results, and so on), load balancing, logging, auditing etc.
*Eg. for the above include jdbc driver features in Weblogic.
**Can be used in internet since there is no client side software needed.
**At client side a single driver can handle any database. (It works provided the middlware supports that database!)

Disadvantages

*Requires database-specific coding to be done in the middle tier.
*An extra layer added may result in a time-bottleneck. But typically this is overcome by providing efficient middleware services described above.

Type 4 Driver - Native-Protocol Driver

The JDBC type 4 driver, also known as the Direct to Database Pure Java Driver, is a database driver implementation that converts JDBC calls directly into the vendor-specific database protocol.

The type 4 driver is written completely in Java and is hence platform independent. It is installed inside the Java Virtual Machine of the client. It provides better performance over the type 1 and 2 drivers as it does not have the overhead of conversion of calls into ODBC or database API calls. Unlike the type 3 drivers, it does not need associated software to work.

As the database protocol is vendor-specific, separate drivers, usually vendor-supplied, need to be used to connect to the database.

Functions

*Type 4 drivers are entirely written in Java that communicate directly with a vendor's database, usually through socket connections. No translation or middleware layers are required, improving performance.
*The driver converts JDBC calls into the vendor-specific database protocol so that client applications can communicate directly with the database server.
*Completely implemented in Java to achieve platform independence.
*e.g include the widely used Oracle thin driver - oracle.jdbc.driver. OracleDriver which connect to jdbc:oracle:thin URL format.
*Client Machine -> Native protocol JDBC Driver -> Database server

Advantages

*These drivers don't translate the requests into an intermediary format (such as ODBC), nor do they need a middleware layer to service requests. Thus the performance may be considerably improved.
*All aspects of the application to database connection can be managed within the JVM; this can facilitate easier debugging.

Disadvantage

*At client side,a separate driver is needed for each database.

ee also

*Open Database Connectivity
*Oracle Call Interface

References


Wikimedia Foundation. 2010.

Игры ⚽ Поможем сделать НИР

Look at other dictionaries:

  • Driver — may refer to: Contents 1 Places 2 Surnames of people 2.1 Fiction 3 Occupation and activity 3.1 …   Wikipedia

  • MSQL-JDBC — (aka Soul) is an Open Source Type IV JDBC driver for the mSQL database engine created by George Reese. It is written 100% in the Java programming language and uses the native mSQL network protocols to talk to mSQL. The driver supports as much of… …   Wikipedia

  • Windows Driver Model — Ein Gerätetreiber, häufig kurz nur Treiber genannt, ist ein Computerprogramm oder modul, das die Interaktion mit angeschlossenen oder eingebauten Geräten (Hardware) steuert. Dazu nutzt es Schnittstellen zum Kommunikationsbus oder anderen… …   Deutsch Wikipedia

  • 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… …   Wikipedia

  • ODBC — In computing, ODBC (Open Database Connectivity) is a standard C interface for accessing database management systems (DBMS). The designers of ODBC aimed to make it independent of database systems and operating systems. An application can use ODBC… …   Wikipedia

  • Open Database Connectivity — In computing, Open Database Connectivity (ODBC) provides a standard software API method for using database management systems (DBMS). The designers of ODBC aimed to make it independent of programming languages, database systems, and operating… …   Wikipedia

  • SQuirreL SQL Client — Infobox Software name = SQuirreL SQL Client developer = Colin Bell, Gerd Wagner, Rob Manning and others latest release version = 2.6.7 latest release date = September 17, 2008 operating system = Cross platform platform = Java genre = Database… …   Wikipedia

  • Simba Technologies — Infobox Company company name = Simba Technologies company company type = Private foundation = 1991 location = Vancouver, British Columbia, Canada key people = Amyn Rajan, President and Chief Executive Officer products = SimbaEngine ODBC SDK,… …   Wikipedia

  • Comparison of database tools — The following tables compare general and technical information for a number of available database administrator tools. Please see individual product articles for further information. This article is neither all inclusive nor necessarily up to… …   Wikipedia

  • Java Database Connectivity — Содержание 1 История 2 Интерфейсы 3 Преимущества 4 Примеры …   Википедия

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”