Oracle Procedure詳解
1、建立儲存過程
create or replace procedure test(var_name_1 in type,var_name_2 out type) as
--宣告變數(變數名 變數型別)
begin
--儲存過程的執行體
end test;
打印出輸入的時間資訊
E.g:
create or replace procedure test(workDate in Date) is
begin
dbms_output.put_line('The input date is:'||to_date(workDate,'yyyy-mm-dd'));
end test;
2、變數賦值
變數名 := 值;
E.g:
create or replace procedure test(workDate in Date) is
x number(4,2);
begin
x := 1;
end test;
3、判斷語句:
if 比較式 then begin end; end if;
E.g
create or replace procedure test(x in number) is
begin
if x >0 then
begin
x := 0 - x;
end;
end if;
if x = 0 then
begin
x: = 1;
end;
end if;
end test;
4、For 迴圈
For ... in ... LOOP
--執行語句
end LOOP;
(1)迴圈遍歷遊標
create or replace procedure test() as
Cursor cursor is select name from student; name varchar(20);
begin
for name in cursor LOOP --開始迴圈
begin
dbms_output.putline(name);
end;
end LOOP;
end test;
(2)迴圈遍歷陣列
create or replace procedure test(varArray in myPackage.TestArray) as
--(輸入引數varArray 是自定義的陣列型別,定義方式見標題6)
i number;
begin
i := 1; --儲存過程陣列是起始位置是從1開始的,與Java、C、C++等語言不同。
--因為在Oracle中本是沒有陣列的概念的,陣列其實就是一張
--表(Table),每個陣列元素就是表中的一個記錄,所以遍歷陣列時就相當於從表中的第一條記錄開始遍歷
for i in 1..varArray.count LOOP
dbms_output.putline(‘The No.’|| i || ‘record in varArray is:’varArray(i));
end LOOP;
end test;
5、While 迴圈
while 條件語句 LOOP
begin
end;
end LOOP;
E.g
create or replace procedure test(i in number) as
begin
while i < 10 LOOP
begin
i:= i + 1;
end;
end LOOP;
end test;
退出迴圈:exit 退出當前迴圈 return 退出所有迴圈
create or replace procedure testproc
is
begin
declare
i number;
j number;
begin
i := 1;
while i<10 loop
j := 1;
while j<5 loop
if j=3 then
return;
end if;
j := j+1;
end loop;
i := i+1;
end loop;
end;
end testproc;
6、陣列
首先明確一個概念:Oracle中本是沒有陣列的概念的,陣列其實就是一張表(Table),每個陣列元素就是表中的一個記錄。
使用陣列時,使用者可以使用Oracle已經定義好的陣列型別,或可根據自己的需要定義陣列型別。
(1)使用Oracle自帶的陣列型別
x array; --使用時需要需要進行初始化
e.g:
create or replace procedure test(y out array) is
x array;
begin
x := new array();
y := x;
end test;
(2)自定義的陣列型別 (自定義資料型別時,建議通過建立Package的方式實現,以便於管理)
E.g (自定義使用參見標題4.2)
create or replace package myPackage is
-- Public type declarations type info is record( name varchar(20), y number);
type TestArray is table of info index by binary_integer;
--此處聲明瞭一個TestArray的型別資料,其實其為一張儲存Info資料型別的Table而已,及TestArray 就是一張表,有兩個欄位,一個是
name,一個是y。需要注意的是此處使用了Index by binary_integer 編制該Table的索引項,也可以不寫,直接寫成:type TestArray is
table of info,如果不寫的話使用陣列時就需要進行初始化:varArray myPackage.TestArray; varArray := new myPackage.TestArray();
end TestArray;
7.遊標的使用
Oracle中Cursor是非常有用的,用於遍歷臨時表中的查詢結果。其相關方法和屬性也很多,現僅就常用的用法做一二介紹:
(1)Cursor型遊標(不能用於引數傳遞)
create or replace procedure test() is
cusor_1 Cursor is select std_name from student where ...; --Cursor的使用方式1 cursor_2 Cursor;
begin
select class_name into cursor_2 from class where ...; --Cursor的使用方式2
可使用For x in cursor LOOP .... end LOOP; 來實現對Cursor的遍歷
end test;
(2)SYS_REFCURSOR型遊標,該遊標是Oracle以預先定義的遊標,可作出引數進行傳遞
create or replace procedure test(rsCursor out SYS_REFCURSOR) is
cursor SYS_REFCURSOR; name varhcar(20);
begin
OPEN cursor FOR select name from student where ... --SYS_REFCURSOR只能通過OPEN方法來開啟和賦值
LOOP
fetch cursor into name
--SYS_REFCURSOR只能通過fetch into來開啟和遍歷 exit when cursor%NOTFOUND;
--SYS_REFCURSOR中可使用三個狀態屬性:
---%NOTFOUND(未找到記錄資訊) %FOUND(找到記錄資訊)
---%ROWCOUNT(然後當前遊標所指向的行位置)
dbms_output.putline(name);
end LOOP;
rsCursor := cursor;
end test;
下面寫一個簡單的例子來對以上所說的儲存過程的用法做一個應用:
現假設存在兩張表,一張是學生成績表(studnet),欄位為:stdId,math,article,language,music,sport,total,average,step
一張是學生課外成績表(out_school),欄位為:stdId,parctice,comment 通過儲存過程自動計算出每位學生的總成績和平均成績,
同時,如果學生在課外課程中獲得的評價為A,就在總成績上加20分。
create or replace procedure autocomputer(step in number) is
rsCursor SYS_REFCURSOR;
commentArray myPackage.myArray;
math number;
article number;
language number;
music number;
sport number;
total number;
average number;
stdId varchar(30);
record myPackage.stdInfo;
i number;
begin
i := 1;
get_comment(commentArray); --呼叫名為get_comment()的儲存過程獲取學生課外評分資訊
OPEN rsCursor for
select stdId,math,article,language,music,sport from student t where t.step = step;
LOOP
fetch rsCursor into stdId,math,article,language,music,sport; exit when rsCursor%NOTFOUND;
total := math + article + language + music + sport;
for i in 1..commentArray.count LOOP
record := commentArray(i);
if stdId = record.stdId then
begin
if record.comment = 'A' then
begin
total := total + 20;
go to next; --使用go to跳出for迴圈
end;
end if;
end;
end if;
end LOOP;
<<continue>> average := total / 5;
update student t set t.total=total and t.average = average where t.stdId = stdId;
end LOOP;
end;
end autocomputer;
--取得學生評論資訊的儲存過程
create or replace procedure get_comment(commentArray out myPackage.myArray) is
rs SYS_REFCURSOR;
record myPackage.stdInfo;
stdId varchar(30);
comment varchar(1);
i number;
begin
open rs for select stdId,comment from out_school
i := 1;
LOOP
fetch rs into stdId,comment; exit when rs%NOTFOUND;
record.stdId := stdId;
record.comment := comment;
recommentArray(i) := record;
i:=i + 1;
end LOOP;
end get_comment;
--定義陣列型別myArray
create or replace package myPackage is begin
type stdInfo is record(stdId varchar(30),comment varchar(1));
type myArray is table of stdInfo index by binary_integer;
end myPackage;
(3)動態遊標
procedure mx_print_common(pd_id in mx_pd_syn.pd_id%type,
p_pd_mxb_id IN mx_pd_mxb_syn.p_mxb_id%type,
p_dept_no IN sc_mxk.dept_code%type,
p1 sc_bz_syn.bz_code%type,
p2 sc_cjjc_syn.cjjc_code%type,
p3 sc_mxk.warehouse_num%type)
is
sql2 varchar2(500); --儲存查詢語句
sql3 varchar2(500); --儲存查詢條件
str1 sc_print_syn.a%type; --儲存車間程序
str2 sc_print_syn.b%type; --儲存班組(工藝、工序)程序
s_ip sc_print_syn.ip%type;
type cursor_type is ref cursor;
c1 cursor_type;
type record_type is record(
pbom_id sc_mxk.pbom_id%type
);