七、PLSQL存儲函數(shù)和存儲過程及打斷點如何調(diào)試_第1頁
七、PLSQL存儲函數(shù)和存儲過程及打斷點如何調(diào)試_第2頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)

文檔簡介

1、七、PLSQL存儲函數(shù)和存儲過程及打斷點如何調(diào)試1、存儲過程和函數(shù)的概念:ORACLE 提供可以把PL/SQL 程序存儲在數(shù)據(jù)庫中,并可以在任何地來運它。這樣就叫存儲過程或函數(shù)。過程和函數(shù)統(tǒng)稱為PL/SQL程序,他們是被命名的PL/SQL塊,均存儲在數(shù)據(jù)庫中,并通過輸、輸出參數(shù)或輸/輸出參數(shù)與其調(diào)者交換信息。過程和函數(shù)的唯區(qū)別是函數(shù)總向調(diào)者返回數(shù)據(jù),過程則不返回數(shù)據(jù)常見的單詞:pragma 編譯指instantiable 實例化overriding 覆蓋重寫static member 靜態(tài)成員delimited 劃定的界限identifier 標(biāo)識符reverse 反向2、存儲函數(shù)的格式|存儲

2、函數(shù)格式|create or replace function func_name(dept_id number,salary number)return varchar2is- 函數(shù)使過程中,需要聲明的變量,記錄類型,cursorbegin-函數(shù)的執(zhí)體,如果有返回值需要returnreturn helloworld| v_logo;-commit;如果此處是進insert、delete、update操作,可以通過提交進更改,需再調(diào)存儲函數(shù)后再進提交exception-處理函數(shù)執(zhí)過程中的異常end;詳解:1)因為函數(shù)需要返回個值, 所以RETURN 包含返回結(jié)果的數(shù)據(jù)類型.2)函數(shù)名后是個可選

3、的參數(shù)列表, 其中包含IN, OUT 或IN OUT 標(biāo)記. 參數(shù)之間逗號隔開IN 參數(shù)標(biāo)記表傳遞給函數(shù)的值在該函數(shù)執(zhí)中不改變;OUT 標(biāo)記表個值在函數(shù)中進計算并通過該參數(shù)傳遞給調(diào)語句;IN OUT 標(biāo)記表傳遞給函數(shù)的值可以變化并傳遞給調(diào)語句. 若省略標(biāo)記, 則參數(shù)隱含為IN3)A、如何調(diào):法select function() from dual;法:set serveroutput on;var aaa varchar2(10);call hello_world() into :aaa;法三:begindbms_output.put_line(hello_world();end;B、存儲過程

4、:由于沒有返回值,創(chuàng)建完成后,不能使select語句,只能使pl/sql塊執(zhí)|實例:創(chuàng)建個參函數(shù)|create or replace function hello_worldreturn varchar2isbeginreturn hello world;end;如何調(diào):法select hello_world() from dual;法set serveroutput on;var aaa varchar2(10);call hello_world() into :aaa;法三:begindbms_output.put_line(hello_world();end;法四:declarev_bi

5、anling varchar2(40);beginv_bianling := hello_world;dbms_output.put_line(v_bianling);end;|實例:創(chuàng)建個有參函數(shù)(傳進去的參數(shù)v_classid的值是不變的)|求個班學(xué)的總薪create or replace function get_sal(v_classid number)return numberisv_sumsal number(10):=0;cursor sal_cursor is select sal from student where classid =v_classid;beginfor c

6、 in sal_cursor loopv_sumsal:=v_sumsal+c.sal;end loop;return v_sumsal;end;|實例三:創(chuàng)建個有參函數(shù)(傳進去的參數(shù)v_classid的值是不變的)|OUT型參數(shù) 對于實例中的傳進去的參數(shù)般是不變的In是輸類型,out是輸輸出類型的如果個形參out修飾 那么它就會在函數(shù)中被賦值,(結(jié)合例理解)create or replace function get_sal1(v_classid number,total_sal out number)return numberisv_sumsal number(10):=0;cursor

7、sal_cursor is select sal from student where classid =v_classid;begintotal_sal:=0;for c in sal_cursor loopv_sumsal:=v_sumsal+c.sal;total_sal:=total_sal +1;end loop;return v_sumsal;end;如何調(diào):declarev_total_sal number(5);begindbms_output.put_line(get_sal1(1, v_total_sal);dbms_output.put_line(v_total_sal)

8、;end;返回值但是可以定義個 out型參數(shù)把 值傳出來的例如下:create or replace function get_sal2(v_classid number,total_sal out number)return numberiscursor sal_cursor is select sal from student where classid =v_classid;begintotal_sal:=0;for c in sal_cursor looptotal_sal:= total_sal+c.sal;end loop;return total_sal;end;如何調(diào):declarev_classid number(5):=1;v_total_sal number(10):=0;begindbms_output.put_line(get_sal2(v_classid,v_total_sal);dbms_output.put_line(v_total

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論