我是一名学生,刚接触Java和存储过程。
我正在尝试编写一个存储过程,该存储过程应该将表行作为java对象返回。

我有这张桌子:
USER_TABLE(USERID,USERNAME,DOB)

&步骤是:

 create or replace procedure "USER_OUT" (USERID in varchar2,UserObj out User)
 is
 begin
 select * from user_table where
 USERID = UserObj.USERID;

 end USER_OUT;


在Java中,我试图调用此过程并将对象检索为:-

CallableStatement callableStatement = dh.con.prepareCall("{call USER_OUT(?)}");
User usr = new User();
callableStatement .setInt (1,"123");
usr1 = (User)callableStatement.getResultSet();
callableStatement.registerOutParameter(1, OracleTypes.CURSOR);
callableStatement.executeUpdate();//getting exception as Object is invalid.


程序执行错误还是我遗漏了什么?
任何帮助都非常感谢!
谢谢。

最佳答案

我认为您应该尝试通过传递用户ID来获取值。

CallableStatement callableStatement = dh.con.prepareCall("{call USER_OUT(?,?)}");
callableStatement.setString(1, "123");
callableStatement.setString(2, OracleTypes.CURSOR);//use OracleTypes.CURSOR
callableStatement.executeUpdate();//execute USER_OUT store procedure
//read the OUT parameter now
// get cursor and cast it to ResultSet
ResultSet rs = (ResultSet) callableStatement.getObject(2);
while (rs.next()) {
String userid = rs.getString(1);
...............................
}

09-27 02:05