Can we pass the output and input parameter to SQLParameter by index and not by name ?
/* This code snippet explains data access thru CallableStatement by registering the output and input params by index. */
Connection conn = getConnection();
CallableStatement sp = conn.prepareCall("pkg_name.proc_name");
sp.registerOutParameter(1, oracle.jdbc.driver.OracleTypes.CURSOR);
sp.registerOutParameter(2, oracle.jdbc.driver.OracleTypes.NUMBER);
ResultSet rs = (ResultSet) sp.getObject(2);
Here resultset can be fetched based on index.
Please suggest.