新聞中心
以下的文章主要講述的是Oracle存儲(chǔ)過(guò)程的實(shí)際的用法,本文是以想關(guān)的實(shí)際應(yīng)用代碼的方式來(lái)引出Oracle存儲(chǔ)過(guò)程的實(shí)際操作流程,以下就是相關(guān)內(nèi)容的具體描述,望你瀏覽之后會(huì)有所收獲。

創(chuàng)新互聯(lián)擁有十余年成都網(wǎng)站建設(shè)工作經(jīng)驗(yàn),為各大企業(yè)提供成都網(wǎng)站建設(shè)、網(wǎng)站制作服務(wù),對(duì)于網(wǎng)頁(yè)設(shè)計(jì)、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、成都app軟件開發(fā)公司、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、程序開發(fā)、網(wǎng)站優(yōu)化(SEO優(yōu)化)、微網(wǎng)站、主機(jī)域名等,憑借多年來(lái)在互聯(lián)網(wǎng)的打拼,我們?cè)诨ヂ?lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了很多網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營(yíng)銷經(jīng)驗(yàn),集策劃、開發(fā)、設(shè)計(jì)、營(yíng)銷、管理等網(wǎng)站化運(yùn)作于一體,具備承接各種規(guī)模類型的網(wǎng)站建設(shè)項(xiàng)目的能力。
- create table stuInfo
- (
- stuID int primary key,
- stuName varchar2(20)
- )
- create or replace procedure proc1
- is
- begin
- insert into stuInfo values(1,'liheng');
- end;
- create or replace procedure proc2
- (
- v_ID int,
- v_Name varchar2
- )
- is
- begin
- insert into stuInfo values(v_ID,v_Name);
- commit;
記得要提交
- end;
- create or replace procedure proc3
- (
- v_ID int,
- v_Name out varchar2
- )
- is
- varName stuInfo.Stuname%type;
- begin
- select stuName into varName from stuInfo where stuID=v_ID;
- v_Name:=varName;
- end;
返回全部記錄
- create or replace package PKG_STUINFO is
- type stuInfoCursorType is ref cursor;
- procedure getStuInfo (stuInfoCursor out stuInfoCursorType);
- end;
- create or replace package body PKG_STUINFO is
- procedure getStuInfo (stuInfoCursor out stuInfoCursorType)
- is
- var_cursor stuInfoCursorType;
- begin
- open var_cursor for select * from stuInfo;
- stuInfoCursor:=var_cursor;
- end;
- end;
根據(jù)編號(hào)返回記錄
- create or replace package PKG_STUINFO is
- type stuInfoCursorType is ref cursor;
- procedure getStuInfo (v_ID int,stuInfoCursor out stuInfoCursorType);
- end;
- create or replace package body PKG_STUINFO is
- procedure getStuInfo (v_ID int,stuInfoCursor out stuInfoCursorType)
- is
- var_cursor stuInfoCursorType;
- begin
- if v_ID=0 then
- open var_cursor for select * from stuInfo;
- else
- open var_cursor for select * from stuInfo where stuID=v_ID;
- end if;
- stuInfoCursor:=var_cursor;
- end;
- end;
根據(jù)姓名返回記錄
- create or replace package PKG_STUINFO is
- type stuInfoCursorType is ref cursor;
- procedure getStuInfo (v_Name varchar2,stuInfoCursor out stuInfoCursorType);
- end;
- create or replace package body PKG_STUINFO is
- procedure getStuInfo (v_Name varchar2,stuInfoCursor out stuInfoCursorType)
- is
- var_cursor stuInfoCursorType;
- begin
- if v_Name =' ' then
- open var_cursor for select * from stuInfo;
- else
- open var_cursor for select * from stuInfo where stuName like '%'||v_Name||'%';
- end if;
- stuInfoCursor:=var_cursor;
- end;
- end;
上述的相關(guān)內(nèi)容就是對(duì)Oracle存儲(chǔ)過(guò)程的用法的描述,希望會(huì)給你帶來(lái)一些幫助在此方面。
名稱欄目:Oracle存儲(chǔ)過(guò)程的實(shí)際用法解剖
當(dāng)前URL:http://fisionsoft.com.cn/article/djpijdd.html


咨詢
建站咨詢
