oracle儲存過程詳解 開發技術

2021-05-24 12:31:15 字數 2550 閱讀 6366

儲存過程就是作為可執行物件存放在資料庫中的乙個或多個sql命令。

定義總是很抽象。儲存過程其實就是能完成一定操作的一組sql語句,只不過這組語句是放在資料庫中的(這裡我們只談sql server)。如果我們通過建立儲存過程以及在asp中呼叫儲存過程,就可以避免將sql語句同asp**混雜在一起。這樣做的好處至少有三個:

create or replace procedure 儲存過程名字

(引數1 in number,

引數2 in number

) is

變數1 integer :=0;

變數2 date;

begin

do something

end;

end if;

4.while 迴圈

while v_test=1 loop

begin

***x

end;

end loop;

5.變數賦值

v_test := 123;

6.用for in 使用cursor

...is

cursor cur is select * from ***;

begin

for cur_result in cur loop

begin

v_sum :=cur_result.列名1+cur_result.列名2

end;

end loop;

end;

7.帶引數的cursor

cursor c_user(c_id number) is select name from user where typeid=c_id;

open c_user(變數值);

loop

fetch c_user into v_name;

exit fetch c_user%notfound;

do something

end loop;

close c_user;

8.用pl/sql developer debug

連線資料庫後建立乙個test window

在視窗輸入呼叫sp的**,f9開始debug,ctrl+n單步除錯

關於oracle儲存過程的若干問題備忘

1.在oracle中,資料表別名不能加as,如:

from

--select

from

as--錯誤

也許,是怕和oracle中的儲存過程中的關鍵字as衝突的問題吧

2.在儲存過程中,select某一字段時,後面必須緊跟into,如果select整個記錄,利用游標的話就另當別論了。

select

into

from

where

=and

=fid;

--select

from

where

=and

=fid;

--

error: pls

-00428

into

isin

select

3.在利用select...into...語法時,必須先確保資料庫中有該條記錄,否則會報出"no data found"異常。

可以在該語法之前,先利用select count(*) from

4.在儲存過程中,別名不能和欄位名稱相同,否則雖然編譯可以通過,但在執行階段會報錯

select

into

from

where

=and

=fid;

--select

into

from

where

=and

af.foundationid

=foundationid;

--ora-

01422

fetch

returns

numberof

5.在儲存過程中,關於出現null的問題

假設有乙個表a,定義如下:

create

table

varchar2(50

primary

keynot

null

number(8

notnull

varchar2(50

notnull

--

); 如果在儲存過程中,使用如下語句:

where='

******';

如果a表中不存在bid="******"的記錄,則fcount=null(即使fcount定義時設定了預設值,如:fcount number(8):=0依然無效,fcount還是會變成null),這樣以後使用fcount時就可能有問題,所以在這裡最好先判斷一下:

ifisnull=0

if;

這樣就一切ok了。

6.hibernate呼叫oracle儲存過程

this

.pnumbermanager.gethibernatetemplate().execute(

new

);

oracle儲存過程詳解 開發技術

儲存過程就是作為可執行物件存放在資料庫中的乙個或多個sql命令。定義總是很抽象。儲存過程其實就是能完成一定操作的一組sql語句,只不過這組語句是放在資料庫中的 這裡我們只談sql server 如果我們通過建立儲存過程以及在asp中呼叫儲存過程,就可以避免將sql語句同asp 混雜在一起。這樣做的好...

Oracle開發儲存過程

1.什麼是過程?使用過的好處?我們都知道,過程就是具體實現步驟,過程用於特定的操作,也就是在一些應用程式中要執行特定的操作 可以基於這些操作建立特定的過程。通過使用過程可以簡化客戶端應用的開發和維護,並且提高應用程式的效能。2.如何建立乙個過程?create or replace procedure...

oracle儲存過程超級詳解

oracle 儲存過程總結 1 建立儲存過程 create or replace procedure test var name 1 in type,var name 2 out type is 宣告變數 變數名 變數型別 begin 儲存過程的執行體 end test 列印出輸入的時間資訊 e.g...