Client OS: Windows 2000
Server OS : Redhat Linux 8.0
Database: Informix 9.4 and DB2 ver. 8
How to call the store procedure(sqlj.install_jar) using jdbc?
My code as following but doesn't work.
private CallableStatement cblStatement = null;
cblStatement = cn_any.prepareCall("{call sqlj.install_jar(?,?)}");
cblStatement.setString(1,"file:C:/UDR/myudr.jar");
cblStatement.setString(2,"myudr.class");
cblStatement.executeUpdate();
Is there anyone can help me?
Thanks.