Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to access this stored Procedure from JDBC Callablestatement ??

public class TestOCIApp {

public static void main(String args[]) throws ClassNotFoundException,
SQLException {

try {
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection conn = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521:orcle", "scott", "tiger");

CallableStatement cs = conn.prepareCall("{call test(?,?)}");
cs.setInt(1, 10);

cs.registerOutParameter(2, oracle.jdbc.OracleTypes.CURSOR);

ResultSet rs = (ResultSet)cs.getObject(2);

while(rs.next())
{
System.out.println(rs.getString(2));
}

conn.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}

I am getting Exception as

java.sql.SQLException: Invalid column index * at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)* * at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:222)* * at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:285)* * at oracle.jdbc.driver.OracleStatement.prepare_for_new_get(OracleStatement.java:2804)* * at oracle.jdbc.driver.OracleStatement.getObjectValue(OracleStatement.java:4983)* * at oracle.jdbc.driver.OracleStatement.getObjectValue(OracleStatement.java:4964)* * at oracle.jdbc.driver.OracleCallableStatement.getObject(OracleCallableStatement.java:586)* * at TestOCIApp.main(TestOCIApp.java:23)*

create or replace procedure test( p_deptno IN number
, p_cursor OUT SYS_REFCURSOR)
is
begin
open p_cursor FOR
select *
from emp
where deptno = p_deptno;
end test;
/
share|improve this question

1 Answer

up vote 3 down vote accepted

When dealign with oracle cursors,The CallableStatement object is cast to OracleCallableStatement to use the getCursor method, which is an Oracle extension to the standard JDBC application programming interface (API), and returns the REF CURSOR into a ResultSet object.

cstmt.registerOutParameter(1, OracleTypes.CURSOR);
cstmt.execute();
cursor = ((OracleCallableStatement)cstmt).getCursor(1);

while (cursor.next ()){
System.out.println (cursor.getString(1));
} 

But this will couple your code to oracle database [:(]

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.