Hi
I try to connect to db2 from a java agent using db2java.zip jdbc driver in notes 5 client.
the code is
DriverManager.registerDriver((Driver)Class.forName("COM.ibm.db2.jdbc.net.DB2Driver").newInstance());
Connection connection = DriverManager.getConnection(url,username, password);
At runtime I get the error :
java.lang.NoClassDefFoundError: java/security/PrivilegedExceptionAction ???
I check the rt.jar and PrivilegedExceptionAction
is not there. The same code work fine in notes 6 with the same driver (for notes 6 rt.jar contains PrivilegedExceptionAction class)
Can someone tell me if there is different versions for db2java.zip driver compatible with jdk 1.1 used in domino5?
Thanks