I checked with the appl team and they have:
$ java -cp /opt7/WebSphere/db2/db2jcc4.jar com.ibm.db2.jcc.DB2Jcc -version
IBM Data Server Driver for JDBC and SQLJ 4.12.55
$ java -cp /opt7/WebSphere/db2/db2jcc.jar com.ibm.db2.jcc.DB2Jcc -version
IBM DB2 JDBC Universal Driver Architecture 3.62.56
$ java -cp /opt7/WebSphere/db2/db2jcc_license_cisuz.jar com.ibm.db2.jcc.DB2Jcc -version
Exception in thread "main" java.lang.NoClassDefFoundError: com.ibm.db2.jcc.DB2Jcc
Caused by: java.lang.ClassNotFoundException: com.ibm.db2.jcc.DB2Jcc
at java.net.URLClassLoader.findClass(URLClassLoader.j ava:434)
at java.lang.ClassLoader.loadClass(ClassLoader.java:6 60)
at sun.misc.Launcher$AppClassLoader.loadClass(Launche r.java:358)
at java.lang.ClassLoader.loadClass(ClassLoader.java:6 26)
Could not find the main class: com.ibm.db2.jcc.DB2Jcc. Program will exit.
Based on
IBM DB2 9.7 Information Center for Linux, UNIX, and Windows,
db2jcc.jar is for JDBC 3.0 and db2jcc4.jar is for JDBC 4.0. Still need to verify what their CLASSPATH is pointing to (they're saying JDBC 4 came with the bundle). Any other way to check if they're using JDBC 3.0 or JDBC 4.0 other than CLASSPATH?
But they don't have db2jcc_license_cu.jar in the same dir as db2jcc.jar/db2jcc4.jar and db2jcc_license_cisuz.jar. Is db2jcc_license_cu.jar needed when connecting to DB2 zOS?