首页 相关文章 如何在oracle存储过程中返回游标

如何在oracle存储过程中返回游标

收藏到:

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...[ 查看全文 ]

2016-02-19 标签:

如何在oracle存储过程中返回游标的相关文章

手机页面
收藏网站 回到头部