 
 
	
Xu,
the db2 driver is COM.ibm.db2.jdbc.app.DB2Driver instead of com.ibm.db2.jdbc.app.DB2Driver (AS/400)
--Original Message Text---
From: Xu, Weining
Date: Mon, 12 Feb 2001 09:14:40 -0500
DB2 JDBC native driver 
You wrote: 
        2) To the best of my knowledge, the native JDBC jar file is not in 
        VisualAge anywhere.  You can always take the jar file noted above and put 
        it in VisualAge but for most purposes, this isn't really needed because you 
        would already be coding to the JDBC API interface. 
I imported db2_classes.jar into a project called DB2 inside VisualAge environment.  I have "import com.ibm.db2.jdbc.app.*;" for my class.  I checked the classpath to DB2 project. But when I run the program, it seems still cannot load "com.ibm.db2.jdbc.app.DB2Driver". 
What could be wrong? 
Basically I want to develop and debug my code inside IDE (VisualAge) by using DB2 native JDBC driver. Then deploy them on AS/400, so the production programs will be run on AS/400 machine.  I do not have problem on AS/400 yet. 
Thanks, 
Wayne 
-----Original Message----- 
From: Richard Dettinger [mailto:cujo@us.ibm.com] 
Sent: Monday, February 05, 2001 11:40 AM 
To: JAVA400-L@midrange.com 
Subject: RE: Updating result set in Java 
This should help: 
1) The native JDBC driver is not in the classpath be default with JDK 1.2 
and beyond.  The following CL command will put the Native JDBC driver in 
your extensions classpath and then you won't have to worry about it again: 
ADDLNK OBJ('/QIBM/ProdData/Java400/ext/db2_classes.jar') NEWLNK 
('/QIBM/UserData/Java400/ext/db2_classes.jar') 
Of course,  you can just add it to your classpath if you want.  That will 
fix the no suitable driver messages. 
2) To the best of my knowledge, the native JDBC jar file is not in 
VisualAge anywhere.  You can always take the jar file noted above and put 
it in VisualAge but for most purposes, this isn't really needed because you 
would already be coding to the JDBC API interface. 
3) You can't run the native JDBC driver from a system that is not a 400 
(iSeries).  This is because it is tied directly into the database and the 
JVM.  You can connect from one 400 to another 400 or from one 400 to a 
different backend (such as a 390) over DRDA, but you can't have your 
'client' not be an AS/400 or iSeries. 
Regards, 
Richard D. Dettinger 
AS/400 Java Data Access Team 
"Biologists have a special word for stability -- dead" 
                Larry Wall 
                Open Source Developers Journal 
                Issue 1, Jan  2000 
"Xu, Weining" <Weining.Xu@AIG.com>@midrange.com on 02/05/2001 10:08:19 AM 
Please respond to JAVA400-L@midrange.com 
Sent by:  owner-java400-l@midrange.com 
To:   "'JAVA400-L@midrange.com'" <JAVA400-L@midrange.com> 
cc: 
Subject:  RE: Updating result set in Java 
Thanks, Richard. 
As you suggested, I am running the program on AS/400 by using DB2 native 
JDBC driver.  Now I got other problems on AS/400. I have multiple JDKs on 
the AS400. In order to use the JDBC 2.0 API, I have to use JDK 1.2.  But I 
got "no suitable driver" message.  I have no problem to load the driver if 
I run the program using JDK1.1.8, of course in this case all JDBC2.0 API 
methods will not be recognized.  Does AS400 Developer Kit for Java only 
support JDK1.1.8?  Do I miss something here? 
By the way, I tried to run the db2 JDBC native driver inside VisualAge for 
JAVA 3.5. But the program can not find the driver.  Do you know where is 
the package "com.ibm.db2.jdbc.app" inside the IDE.  I have no problem to 
use the native driver on AS400 (for JDK1.1.8).  What I understood is that 
on AS400 I am using AS/400 Developer Kit for Java,  how about inside 
VisualAge? 
I do have write authority to the table.  In fact, I can use SQL statement 
to update the ID field of the TEST table. The code looks like this: 
        String myUpdate = "update TEST set ID = RRN(TEST)+30"; 
        stmt = con.createStatement(); 
        stmt.executeUpdate(myUpdate); 
Thanks. 
-----Original Message----- 
From: Richard Dettinger [mailto:cujo@us.ibm.com] 
Sent: Monday, February 05, 2001 9:11 AM 
To: JAVA400-L@midrange.com 
Subject: RE: Updating result set in Java 
You don't have write authority to the table??? No, I don't have another 
guess. 
Export your program to the 400 and use the Native JDBC driver to see if the 
problem is the same. 
If the problem is the same, the issue is likely to be something about the 
database (either setup 
or a bug).  If it works that way, its likely to be a Toolbox JDBC driver 
issue which should be investigated. 
Regards, 
Richard D. Dettinger 
AS/400 Java Data Access Team 
"Biologists have a special word for stability -- dead" 
                Larry Wall 
                Open Source Developers Journal 
                Issue 1, Jan  2000 
"Xu, Weining" <Weining.Xu@AIG.com>@midrange.com on 02/02/2001 03:52:00 PM 
Please respond to JAVA400-L@midrange.com 
Sent by:  owner-java400-l@midrange.com 
To:   "'JAVA400-L@midrange.com'" <JAVA400-L@midrange.com> 
cc: 
Subject:  RE: Updating result set in Java 
rs.next() did return true.  The code was simplified. I do use while 
(rs.next()) in my real code. 
any other thought?? 
-----Original Message----- 
From: Richard Dettinger [mailto:cujo@us.ibm.com] 
Sent: Friday, February 02, 2001 4:23 PM 
To: JAVA400-L@midrange.com 
Subject: Re: Updating result set in Java 
Are you sure the call to rs.next() returned true?  If you don't test the 
boolean return value, the resultset could have been empty.  That's my 
first, best guess. 
Of course, you can write code however you want, but I always make it a 
practice to use while(rs.next())  if I am going to process all the rows and 
if (rs.next()) if I want to process only one.  This ensures that there is 
always data before I go off and try to do something to the ResultSet. 
Regards, 
Richard D. Dettinger 
AS/400 Java Data Access Team 
"Biologists have a special word for stability -- dead" 
                Larry Wall 
                Open Source Developers Journal 
                Issue 1, Jan  2000 
"Xu, Weining" <Weining.Xu@AIG.com>@midrange.com on 02/02/2001 02:29:04 PM 
Please respond to JAVA400-L@midrange.com 
Sent by:  owner-java400-l@midrange.com 
To:   "'JAVA400-L@midrange.com'" <JAVA400-L@midrange.com> 
cc: 
Subject:  Updating result set in Java 
I have problem to update the result set programmatically. I use VisualAge 
for Java 3.5 Enterprise Edition. My database is DB2 in AS/400.  I am using 
JDBC 2.0 API features to update the field in the result set.  I got error 
message: