国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

深入探討Oracle數據庫存儲過程的若干問題

瀏覽:128日期:2023-11-23 10:18:45

1.在oracle中,數據表別名不能加as,如:

select a.appname from appinfo a;-- 正確

select a.appname from appinfo as a;-- 錯誤

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

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

select af.keynode into kn from APPFOUNDATION af where af.appid=aid and af.foundationid=fid;-- 有into,正確編譯

select af.keynode from APPFOUNDATION af where af.appid=aid and af.foundationid=fid;-- 沒有into,編譯報錯,提示:Compilation

Error: PLS-00428: an INTO clause is expected in this Select statement

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

可以在該語法之前,先利用select count(*) from 查看數據庫中是否存在該記錄,如果存在,再利用select...into...

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

select keynode into kn from APPFOUNDATION where appid=aid and foundationid=fid;-- 正確運行

select af.keynode into kn from APPFOUNDATION af where af.appid=appid and af.foundationid=foundationid;-- 運行階段報錯,提示

orA-01422:exact fetch returns more than requested number of rows

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

假設有一個表A,定義如下:

create table A(

id varchar2(50) primary key not null,

vcount number(8) not null,

bid varchar2(50) not null -- 外鍵

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

select sum(vcount) into fcount from A where bid='xxxxxx';如果A表中不存在bid='xxxxxx'的記錄,則fcount=null(即使fcount定義時設置了默認值,如:fcount number(8):=0依然無效,fcount還是會變成null),這樣以后使用fcount時就可能有問題,所以在這里最好先判斷一下:

if fcount is null then

fcount:=0;

end if;這樣就一切ok了。

6.Hibernate調用oracle存儲過程

this.pnumberManager.getHibernateTemplate().execute(

new HibernateCallback() ...{

public Object doInHibernate(Session session)

throws HibernateException, SQLException ...{

CallableStatement cs = session

.connection()

.prepareCall('{call modifyapppnumber_remain(?)}');

cs.setString(1, foundationid);

cs.execute();

return null;

}

});

標簽: Oracle 數據庫
主站蜘蛛池模板: 99秒拍福利大尺度视频 | 手机在线观看黄色网址 | 美女黄频网站 | 亚洲综合天堂网 | 国产日韩欧美一区 | 中国美女一级黄色片 | 毛片图片| 久久91亚洲精品中文字幕奶水 | 黄大片日本一级在线a | 亚洲综合91| 久久精品视频91 | 狼伊千合综网中文 | 成年免费网站 | 高清在线观看自拍视频 | 精品三级内地国产在线观看 | 色拍拍在精品视频69影院在线 | 日韩精品网址 | 亚洲不卡视频在线观看 | 午夜看片a福利在线 | 日本www视频 | 亚洲一区欧美二区 | 日韩一区二区三区四区不卡 | 一级毛片在线播放免费 | 国产三级日产三级日本三级 | 欧美性活一级视频 | 波多野结衣在线观看免费区 | 欧美日韩国产亚洲综合不卡 | 精品免费国产一区二区三区 | 成年午夜性视频免费播放 | 欧美成网| 国产成人高清精品免费5388密 | 国产一区二区高清在线 | 高清一本之道加勒比在线 | 99国产精品久久久久久久成人热 | 午夜桃色剧场 | 美女视频黄a全部免费专区一 | 国产精品免费一区二区区 | 日本天堂网在线 | 日韩国产欧美在线观看一区二区 | 色综合91久久精品中文字幕 | 欧美在线日韩在线 |