Db2 Universal Jdbc Driver Provider
The DB2 Universal JDBC driver versions are included with DB2 products. A table with the complete listing is available here. How do I find the right DB2 JDBC Driver? Question by Andrew McCarl. Even though I created new JDBC provider and the classpath is pointing to the v10 jar files in the Admin console of WebSphere Application Server. I need to connect to remote DB2 from local SQL Server 2008 R2. I don't want to use linked servers. So I am searching for download and trying to install IBM DB2 driver, as Microsoft ODBC driver for DB2 comes with Host Integration Server is expensive.
- Type 2 driver handles all global transactions as RRS-coordinated global transactions. The DB2 Universal JDBC Driver Provider by APAR PQ80841 on DB2 UDB for OS/390® and z/OS Version 7. This version provides both driver Type 2 and driver Type 4 support. Type 4 driver support uses a communication protocol to communicate requests from a z/OS.
- Type 2 driver handles all global transactions as RRS-coordinated global transactions. The DB2 Universal JDBC Driver Provider by APAR PQ80841 on DB2 UDB for OS/390® and z/OS Version 7. This version provides both driver Type 2 and driver Type 4 support. Type 4 driver support uses a communication protocol to communicate requests from a z/OS.
- I am posting to this thread because it is mentioned in IBM's list of JDBC driver versions (document reference 1363866). That document is actively maintained by IBM, and I reference it often, but it is missing an important piece of information that would greatly assist DB2 administrators.
Home > Articles > Programming > Java
␡- JDBC Drivers
Like this article? We recommend
Like this article? We recommend
Db2 Universal Jdbc Driver Provider Portal
JDBC Drivers
DB2 UDB provides for JDBC connectivity through a number of Java classes and interfaces that implement the JDBC specification. The implementation is known as a JDBC driver. DB2 currently offers JDBC drivers known as legacy/CLI drivers and the universal JDBC driver.
Using the JDBC Type 2 Driver
JDBC 2 Type 2 drivers use an OS-specific library to facilitate communication with DB2. DB2 ships with two different type 2 drivers: the legacy/CLI JDBC driver and the universal JDBC driver. This interaction is illustrated in Figure 1.
Figure 1 JDBC Type 2 driver implementation: the legacy/CLI JDBC driver.
Opera Mini will let you know as soon as your downloads are complete. Get the latest news: The start page keeps everything in one place. Save your favorite sites: Tap the + button on the search bar to save a page to your Speed Dial, add it to your mobile bookmarks, or read it offline. Opera mini free download for windows 8.1. Just click the notification to open your download – no more digging around in folders.Other great stuff.
The legacy/CLI JDBC driver is provided in the file db2java.zip which is in the default DB2 installation directory, 'c:Program FilesIBMSQLLIBjava'.
If you are trying to interact with a remote database using the legacy/CLI JDBC driver, you need to use the DB2 Configuration Assistant. Under the covers, this driver performs a native connect through a local DB2 client. If you have installed a DB2 UDB v8 server, you will have the Configuration Assistant and the rest of the DB2 product. If you are connecting to a remote DB2 server, you should install the DB2 Application Development Client or the DB2 Runtime Client. These clients are downloadable for free at http://www-306.ibm.com/software/data/db2/udb/support.html.
For Java development, the only required DB2 software is the runtime client, and it is a much smaller download image (around 68MB for Windows and 200MB for Linux). If you decide that the Universal JDBC driver in type 4 mode is all you really need, you can simply copy the db2jcc.jar file and its corresponding license jar file from an existing installation. These two files would result in less than 1MB of disk space.
If you are just getting started with DB2 locally on your own machine we would recommend that you download the DB2 Personal Developer's Edition product.
Figure 2 shows the DB2 Configuration Assistant (db2ca), it can be used to catalog the DB2 database and the node directory information that will be used by the JDBC driver to locate the DB2 database on a remote server.
Figure 2 DB2 Configuration Assistant.
Before you start your endeavors of hooking up to DB2 via Java, it is a good idea to ensure connectivity to your remote database. This can be done using the Configuration Assistant, as shown in Figure 3.
Figure 3 Test the DB2 connection.
The code of Listing 1 shows the programmatic access of the database we created earlier. Note that the implementation package name is com.ibm.db2.jdbc.app.DB2Driver. Listing 1, 2, and 3 all do the same thing. They simply retrieve data from the database we created using a simple SQL query.
Listing 1 Use of the legacy/CLI JDBC driver (db2java.zip), a JDBC-type driver to interact with DB2
We are assuming that you have a background in JDBC. (If not, it might be a good idea to take a look at articles on this topic on the InformIT site.) The only difference is that they use the different drivers, driver architectures, and syntax to achieve their connectivity. Figure 4 shows the successful execution of the code.
Figure 4 Successful execution of our sample code.
The Universal JDBC driver
With the advent of DB2 8.1 came the new Universal JDBC driver, which can be used either in a Type 2 architecture or a Type 4 architecture (see below). In a Type 2 mode, the Universal JDBC driver provides local application performance gains (because it avoids using TCP/IP protocol to communicate to the DB2 server). In Type 2 mode, there is also full support for distributed transactions. Therefore, if the application and the DB2 server are on the same machine, we recommend that you use the Universal JDBC driver in Type 2 mode. The driver is located in the file db2jcc.jar. Note from the code of Listing 2 that the implementation package is com.ibm.db2.jcc.DB2Driver. Also, at runtime, in type 2 mode and attempt will be made to load a file named db2jcct2.dll. This file is installed when the Runtime Client or Application Development client of the product are installed.
Listing 2 Use of the Universal driver (db2jcc.jar)in a JDBC Type 2 setup to interact with DB2.
Using the JDBC Type 4 Driver
A Type 4 JDBC driver connects directly to the database server using Java. (Refer to Figure 1 for an illustration of this interaction.)
In a Type 4 setup, no client Configuration Assistant is needed to catalog remote databases as with the Type 2 driver. The same db2jcc.jar file is used for the Universal driver regardless of communication mode (Type 2 or Type 4). We demonstrate how to connect to our DB2 server in Listing 3. (Note that our implementation package name is again: com.ibm.db2.jcc.DB2Driver.)
Foxit pdf creator x32. At a quick glance, it is a bit difficult to see the difference between the syntax of Listing 2 (showing the use of the Universal driver as JDBC Type 2 driver) and Listing 3 (showing the use of the Universal driver as a JDBC Type 4 driver).
Listing 3 Use of the Universal driver (db2jcc.jar) in a JDBC Type 4 setup to interact with DB2.
Let's go over some key differences. In the Type 4 driver, our connection URL takes the form jdbc:db2://server1:50000/phonedb (as opposed to the form jdbc:sample). The DB2 server in this case is listening for client connections on port 50000. This is the default port that DB2 listens to upon installation unless you specify otherwise.
Also, note that the hostname (server1) and the port number is included in the database connection URL. These (with the port number) provide the driver with information to connect directly to the database server without having to reference the database and node catalog entries, as was required for the legacy/CLI JDBC driver discussed earlier.
Note that if you are using DB2 UDB V8.1.2 or later versions of the Universal JDBC driver, then you have to include a license JAR file in your CLASSPATH in addition to the db2jcc.jar file. Refer to the DB2 documentation to determine which JAR file to include (this file is used to determine which DB2 server platforms you will be able to access).
Related Resources
- Book $31.99
- eBook (Watermarked) $25.59
- eBook (Watermarked) $57.59
Where do I download JDBC drivers for DB2 that are compatible with JDK 1.5? They seem to be very elusive and I hit many dead-ends at IBM's website. I managed to find versions of the driver bundled with some tools such as IBM Data Studio. Unfortunately, these versions either target a JVM too modern (JDK 1.6, leading to class version errors) or too ancient (JDK 1.2, leading to known bugs when run on JDK 1.5).
Adam PaynterAdam Paynter4 Answers
I know its late but i recently ran into this situation. After wasting entire day I finally found the solution. I am suprised that I got this info on oracle's website whereas this seems nowhere to be found on IBM's website.
If you want to use JDBC drivers for DB2 that are compatible with JDK 1.5 or 1.4 , you need to use the jar db2jcc.jar
, which is available in SQLLIB/java/
folder of your db2 installation.
Right here: http://jt400.sourceforge.net/
This is what I use for that exact purpose.
EDIT: Usage Examples (minus exceptions):
Hope that helps!
BenColeBenColeyou can download and install db2client and looking for - db2jcc.jar - db2jcc_license_cisuz.jar - db2jcc_license_cu.jar - and etc.at C:Program Files (x86)IBMSQLLIBjava
Fuangwith S.Fuangwith S.