天天看點

oracle中的程式包

一 程式包的基本概念

程式包可将若幹函數或者存儲過程組織起來,作為一個對象進行存儲。程式包通常由兩部分構成,規範(specification)和主體(body)。程式報也可以包含常量和變量,包中的所有函數和存儲過程都可以使用這些變量或者常量。

二 規範

1 建立規範(sql視窗)

create or replace package pkg_staff as

       staffstring varchar2(500);

       stafftage number:=18;

       function get_staff_string return varchar2;

       procedure insert_staff(in_staff_id in number,in_staff_name in varchar2);

       procedure update_staff(in_staff_id in number);

       procedure delete_staff(in_staff_id in number);

end pkg_staff;

2 在資料字典中檢視程式包規範的資訊

select object_name,object_type,status from user_objects

where lower(object_name) = 'pkg_staff'

三 主體

所謂規範,就像面向對象程式設計中的接口,該規範的主體必須實作該規範的所有方法。oracle會自動尋找與主體同名的規範,看是否全部實作了該規範函數或者存儲過程。若沒有,則編譯錯誤。

1 建立主體

create or replace package body pkg_staff as

       function get_staff_string return varchar2 as

       begin

                return 'staff';

       end get_staff_string;

       procedure insert_staff(in_staff_id in number,in_staff_name in varchar2) as

                 insert into staff values (in_staff_id,in_staff_name);

       end insert_staff;

       procedure update_staff(in_staff_id in number) as

                 update staff set name = 'xy' where num = in_staff_id;

       end update_staff;

       procedure delete_staff(in_staff_id in number) as

                 delete from staff where num = '1';

       end delete_staff;

2 在資料字典中檢視程式包主體的資訊

四 調用程式包中的函數或者存儲過程

調用函數(sql window)

select pkg_staff.get_staff_string() as result from dual

調用存儲過程(command window)

begin

pkg_staff.delete_staff(1);

end;

/