Oracle預存程序返回遊標執行個體詳解

來源:互聯網
上載者:User

有倆種方法:
一種是聲明系統遊標,一種是聲明自訂遊標,然後後面操作一樣,參數類型為
in out 或out
(1)聲明個人系統遊標.(推薦) 複製代碼 代碼如下:create or replace p_temp_procedure
(
cur_arg out sys_refcursor; --方法1
)
begin
open cur_arg for select * from tablename;
end

調用 複製代碼 代碼如下:declare
cur_calling sys_refcursor;
begin
p_temp_procedure(cur_calling); --這樣這個遊標就有值了
for rec_next in cur_calling loop
....
end loop;
end;

(2)在包頭中申明一個遊表類型,然後調用者申明一個這個類型的遊標變數,傳給返回遊標的預存程序 ,預存程序out這個結果集,這種方法很麻煩.遊標類型不能像索引表一樣使用create or replace type方法來建立,所以只能在包中申明,並且需要使用/來執行,後面的預存程序才認這個遊標類型.(不推薦,但是建議要知道並且要會這種方式,畢竟它有它存在的道理) 複製代碼 代碼如下:--定義全域變數
create or replace package pkg_package
as
type type_cursor is ref cursor;
type type_record is record
(
test01 varchar2(32),
test02 varchar2(32),
test03 varchar2(32)
);
end;

--建立返回遊標的預存程序 複製代碼 代碼如下:create or replace procedure p_temp_procedure
(
cur_out_arg out pkg_package.type_cursor
)
is
begin
open cur_out_arg for select * from test;
end;

--調用 複製代碼 代碼如下:declare
cur_out_arg pkg_package.type_cursor;
rec_arg pkg_package.type_record;
begin
p_temp_procedure(cur_out_arg);
fetch cur_out_arg into rec_arg;
dbms_output.put_line(rec_arg.test01);
dbms_output.put_line(rec_arg.test02);
dbms_output.put_line(rec_arg.test03);
end;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.