bjhyzy 发表于 2019-11-26 20:11:39

oracle 存储过程返回游标,如何作为数据集

本帖最后由 KarenGao 于 2024-9-29 12:09 编辑

Oracle 存储过程如下:
create or replace procedure RP_FIXPERCENT(pLoginUserID in varchar2,
                                          pFromTime    in varchar2,
                                          pToTime      in varchar2,
                                          io_cursor    out sys_refcursor)

其中,io_cursor 为返回的数据集。


我想在数据集的自定义表中调用这个存储过程,请问如何写?




williamluo 发表于 2019-11-27 09:29:39

可另做一个存储过程,将游标遍历一遍,将记录转成表变量,然后返回。SQL Server的示例脚本如下:
/*
-- 返回游标的存储过程
alter proc GetCursor1 (@Cursor1 cursor varying output) as
begin
set @Cursor1 = cursor for select * from T1 where ID in (1,2,5)
open @Cursor1
end
*/

create proc sp_2 as
begin
declare @f1 int,@f2 nvarchar(50)
declare @t table(ID int,Name nvarchar(50))
declare @Cursor1 cursor
-- 调用存储过程
exec GetCursor1 @Cursor1 output

fetch next from @Cursor1 into @f1,@f2
while @@FETCH_STATUS=0
begin
insert into @t(ID,Name)Values(@f1,@f2)
fetch next from @Cursor1 into @f1,@f2
end
close @Cursor1
deallocate @Cursor1
select * from @t
end

williamluo 发表于 2019-11-27 15:51:35

Oracle数据库因为存储过程不允许返回select结果,需要改用function,将游标转成表变量返回。示例脚本如下:
/*
create or replace procedure proc1 (Cursor1 out sys_refcursor) as
begin
open Cursor1 for 'select * from hr.jobs';
end;
*/
/*
create or replace type job_object as object
(
id varchar2(50),
name varchar2(50)
)
*/
/*
create or replace type job_table is table of job_object;
*/

/*
create or replace function f_cursor
return job_table pipelined
is
cur1   SYS_REFCURSOR;
in_rec Jobs%ROWTYPE;
oneJob job_object;
begin

-- call procedure
   proc1(Cursor1 => cur1);

loop
    fetch cur1 into in_rec;
    exit when cur1%notfound;

   oneJob := job_object(in_rec.job_id, in_rec.job_title);
   pipe row(oneJob);

end loop;

close cur1;

return;
end f_cursor;
*/


-- 数据集的查询语句这样写:
select * from table(f_cursor())

bjhyzy 发表于 2019-11-29 15:41:43

Wyn关于Oracle游标的支持方式,不是很直接,需要太多的间接过程,给数据开发增加了很多的工作量。
希望Wyn能够提供对Oracle游标的支持,因为游标在Oracle中实在用的非常普遍。

bjhyzy 发表于 2019-11-29 15:43:16

不知道Wyn什么时候能正式提供对Oracle存储过程的支持?

williamluo 发表于 2019-11-29 19:17:58

GEF-4691

williamluo 发表于 2019-11-29 19:19:03

开发现在很难给出具体的时间计划,抱歉

KarenGao 发表于 2024-9-29 12:10:34

您好,
      这个功能在Wyn 4.0版本已经支持,谢谢!
页: [1]
查看完整版本: oracle 存储过程返回游标,如何作为数据集