This Domain(Admin5.com) is for Sale:

DB2编程序技巧 (二)

时间:2007-11-09  来源:不详  作者:迈克DB
1 DB2编程
1.1 建存储过程时Create后一定不要用TAB键
create procedure
的create后只能用空格,而不可用tab健,否则编译会通不过。
切记,切记。

1.2 使用临时表

要注意,临时表只能建在usertemporytablesspace上,如果database只有systemtemporytablespace是不能建临时表的。
另外,DB2的临时表和sybase及oracle的临时表不太一样,DB2的临时表是在一个session内有效的。所以,如果程序有多线程,最好不要用临时表,很难控制。
建临时表时最好加上withreplace选项,这样就可以不显示的drop临时表,建临时表时如果不加该选项而该临时表在该session内已创建且没有drop,这时会发生错误。
1.3 从数据表中取指定前几条记录
select*fromtb_market_codefetchfirst1rowsonly

但下面这种方式不允许
selectmarket_codeintov_market_code
fromtb_market_codefetchfirst1rowsonly;

选第一条记录的字段到一个变量以以下方式代替
declarev_market_codechar(1);
declarecursor1cursorforselectmarket_codefromtb_market_code
fetchfirst1rowsonlyforupdate;
opencursor1;
fetchcursor1intov_market_code;
closecursor1;
织梦好,好织梦


1.4 游标的使用
注意commit和rollback
使用游标时要特别注意如果没有加withhold选项,在Commit和Rollback时,该游标将被关闭。Commit和Rollback有很多东西要注意。特别小心

游标的两种定义方式
一种为
declarecontinuehandlerfornotfound
begin
setv_notfound=1;
end;

declarecursor1cursorwithholdforselectmarket_codefromtb_market_code forupdate;
opencursor1;
setv_notfound=0;
fetchcursor1intov_market_code;
whilev_notfound=0Do
--work
setv_notfound=0;
fetchcursor1intov_market_code;
endwhile;
closecursor1;
这种方式使用起来比较复杂,但也比较灵活。特别是可以使用withhold选项。如果循环内有commit或rollback而要保持该cursor不被关闭,只能使用这种方式。

看完这篇,您有何感觉呢?

文章评论

共有位Admini5网友发表了评论 查看完整内容

24小时热门信息