欢迎光临
我们一直在努力

如何在oracle存储过程中返回游标_数据库技巧

建站超值云服务器,限时71元/月

1:首先你需要创建一个包,并定义你返回的游标的类型、存储过程


create or replace package TEST_PKG is
 
  — Public type declarations
  type cur_emp is REF CURSOR;
 
  procedure test_proc (v_empno in number, emps out cur_emp);
 
end TEST_PKG;


2:然后你再创建包体


create or replace package body TEST_PKG is


procedure test_proc (v_empno in number, emps out cur_emp)
as
begin
open emps for select * from emp where empno=7369;
end test_proc; 
end TEST_PKG ;


3,通过JAVA调用


cstmt = conn.prepareCall(“{call TEST_PKG .test_proc (?)}”);
cstmt.registerOutParameter(1, OracleTypes.CURSOR);
cstmt.execute();
 
//获得结果集
rs = (ResultSet)cstmt.getObject(4);
while(rs.next()){……}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 如何在oracle存储过程中返回游标_数据库技巧
分享到: 更多 (0)