Gebruik
CallableStatement stmt=con.prepareCall("{call hello(?,?)}");
in plaats van
CallableStatement stmt=con.prepareCall("{?=call hello(?,?)}");
Eerst ? in uw code wordt gebruikt voor het retourtype
Gebruik
CallableStatement stmt=con.prepareCall("{call hello(?,?)}");
in plaats van
CallableStatement stmt=con.prepareCall("{?=call hello(?,?)}");
Eerst ? in uw code wordt gebruikt voor het retourtype