The following should work:
java.sql.CallableStatement stmt = con.prepareCall("{call proc_name (?, ?, ...)}");
stmt.setXXX(1, yyy);
stmt.setXXX(2, yyy);
...
stmt.execute();
rs = (java.sql.ResultSet) stmt.getResultSet();
Access your return values through the first row of the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.