亚洲免费在线视频-亚洲啊v-久久免费精品视频-国产精品va-看片地址-成人在线视频网

您的位置:首頁技術(shù)文章
文章詳情頁

深入探討Oracle數(shù)據(jù)庫存儲(chǔ)過程的若干問題

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

1.在oracle中,數(shù)據(jù)表別名不能加as,如:

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

select a.appname from appinfo as a;-- 錯(cuò)誤

也許,是怕和oracle中的存儲(chǔ)過程中的關(guān)鍵字as沖突的問題吧

2.在存儲(chǔ)過程中,select某一字段時(shí),后面必須緊跟into,如果select整個(gè)記錄,利用游標(biāo)的話就另當(dāng)別論了。

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,編譯報(bào)錯(cuò),提示:Compilation

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

3.在利用select...into...語法時(shí),必須先確保數(shù)據(jù)庫中有該條記錄,否則會(huì)報(bào)出'no data found'異常。

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

4.在存儲(chǔ)過程中,別名不能和字段名稱相同,否則雖然編譯可以通過,但在運(yùn)行階段會(huì)報(bào)錯(cuò)

select keynode into kn from APPFOUNDATION where appid=aid and foundationid=fid;-- 正確運(yùn)行

select af.keynode into kn from APPFOUNDATION af where af.appid=appid and af.foundationid=foundationid;-- 運(yùn)行階段報(bào)錯(cuò),提示

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

5.在存儲(chǔ)過程中,關(guān)于出現(xiàn)null的問題

假設(shè)有一個(gè)表A,定義如下:

create table A(

id varchar2(50) primary key not null,

vcount number(8) not null,

bid varchar2(50) not null -- 外鍵

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

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

if fcount is null then

fcount:=0;

end if;這樣就一切ok了。

6.Hibernate調(diào)用oracle存儲(chǔ)過程

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;

}

});

標(biāo)簽: Oracle 數(shù)據(jù)庫
主站蜘蛛池模板: 日日爱影院 | 欧美成年免费a级 | 欧美三区| 国产成人精品一区二三区在线观看 | 视色4setv.com| 国产性videostv另类极品 | 一级片观看 | 亚洲精品欧洲久久婷婷99 | 二区久久国产乱子伦免费精品 | 国产成人aa在线视频 | 国产精品3 | 一级做a| 碰碰碰人人澡人人爱摸 | 日本乱人伦片中文字幕三区 | 俄罗斯aa毛片极品 | 视频偷拍一级视频在线观看 | 国产男女免费视频 | 免费午夜不卡毛片 | 国产久视频| 亚洲成人一区 | 免费人成黄页在线观看视频国产 | 亚洲一级黄色毛片 | 国产在线不卡免费播放 | 美女被躁免费视频软件 | 永久毛片 | 中文字幕av一区二区三区 | 成人精品综合免费视频 | 男女午夜视频在线观看 | 特级a毛片 | 91久久99热青草国产 | 国产91成人精品亚洲精品 | 久久九九亚洲精品 | 欧美三级成版人版在线观看 | 亚洲国产小视频 | 美女张开腿让人捅 | 永久免费不卡在线观看黄网站 | 欧美亚洲精品一区 | 久久精品国产亚洲网址 | 日本一级特黄高清ab片 | 手机看片精品国产福利盒子 | 一级a毛片免费观看久久精品 |