I connect to DB2 UDB 7.1.1, on Z/OS 1.4
When using the ODBC defiened on my PC it works successfully
public final
String DB_URL = "jdbc : db2 : ODBC_NAME";
public final String DB_DRIVER = "COM.ibm.db2.jdbc.app.DB2Driver";
While null is retrieved from the direct connection to the Database on server
public final String DB_URL = "jdbc : db2 : // 196.15.32.80:446/DATABASE_NAME";
public final String DB_DRIVER = "COM.ibm.db2.jdbc.net.DB2Driver";
What is the problem with
JDBC direct connection?