Parul, Thanks. Yep. it's correct jdbc driver for DB2
Christian Waidner
Greenhorn
Joined: Mar 29, 2001
Posts: 6
posted
0
Hi! There are two valid Drivers to use with the IBM DB2: driver: COM.ibm.db2.jdbc.DB2Driver url: jdbc:db2:databasename driver: COM.ibm.db2.jdbc.net.DB2Driver url: jdbc:db2://servername ort/database The first one requires a DB2-client installation on your pc, the second one requires the "Applet-Server" on your DB2 (see jstrt for details). bye, Chris
------------------
Christian Waidner<BR>Hirschbiegel & Grundstein GmbH<BR>http://www.hg-online.de
Zoe Peng
Ranch Hand
Joined: Nov 27, 2000
Posts: 112
posted
0
O. yes. I did both of them in my code. thanks. Class.forName("COM.ibm.db2.jdbc.app.DB2Driver"); Connection con = DriverManager.getConnection("jdbc:db2 BNAME","",""); one is a driver, the other one is a dbURL.