oracle的預存程序如何返回結果集

來源:互聯網
上載者:User
SQL server 的預存程序返回結果集很簡單

Oracle 預存程序返回結果集怎麼這麼費勁?

過程返回記錄集:
CREATE OR REPLACE PACKAGE pkg_test
AS
    TYPE myrctype IS REF CURSOR;
  
    PROCEDURE get (p_id NUMBER, p_rc OUT myrctype);
END pkg_test;
/
  
CREATE OR REPLACE PACKAGE BODY pkg_test
AS
    PROCEDURE get (p_id NUMBER, p_rc OUT myrctype)
    IS
       sqlstr   VARCHAR2 (500);
    BEGIN
       IF p_id = 0 THEN
          OPEN p_rc FOR
             SELECT ID, NAME, sex, address, postcode, birthday
               FROM student;
       ELSE
          sqlstr :=
             'select id,name,sex,address,postcode,birthday
            from student where id=:w_id';
          OPEN p_rc FOR sqlstr USING p_id;
       END IF;
    END get;
END pkg_test;
/
  
函數返回記錄集:
建立帶ref cursor定義的包和包體及函數:
CREATE OR REPLACE
package pkg_test as
/* 定義ref cursor類型
    不加return類型,為弱類型,允許動態sql查詢,
    否則為強型別,無法使用動態sql查詢;
*/
   type myrctype is ref cursor;  
   
--函數申明
   function get(intID number) return myrctype;
end pkg_test;
/
   
CREATE OR REPLACE
package body pkg_test as
--函數體
    function get(intID number) return myrctype is
      rc myrctype;  --定義ref cursor變數
      sqlstr varchar2(500);
    begin
      if intID=0 then
         --靜態測試,直接用select語句直接返回結果
         open rc for select id,name,sex,address,postcode,birthday from student;
      else
         --動態sql賦值,用:w_id來申明該變數從外部獲得
         sqlstr := 'select id,name,sex,address,postcode,birthday from student where id=:w_id';
         --動態測試,用sqlstr字串返回結果,用using關鍵詞傳遞參數
         open rc for sqlstr using intid;
      end if;
   
      return rc;
    end get;
   
end pkg_test;
/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.