详细讲解有关Oracle存储过程的相关问题
在Oracle数据库中数据表别名是不能加as的例如
select aappname from appinfo a—— 正确
select aappname from appinfo as a—— 错误
注释这可能是为了防止和Oracle数据库中的存储过程中的关键字as沖突的问题
在存储过程中select某一字段时后面必须紧跟into假如select整个记录利用游标的话就另当别论了
select afkeynode into kn from APPFOUNDATION af where afappid=aid and affoundationid=fid; 有into正确编译 select afkeynode from APPFOUNDATION af where afappid=aid and affoundationid=fid; 没有into编译报错提示Compilation Error: PLS: an INTO clause is expected in this SELECT statement
在我们利用select……into……语法时必须先确保数据库中有该条记录否则会报出no data found异常
可以在该语法之前先利用select count(*) from 查看数据库中是否存在该记录如果存在再利用select……into……
请注意在存储过程中别名不能和字段名称相同否则虽然编译可以通过但在运行的阶段会报错
select keynode into kn from APPFOUNDATION where appid=aid and foundationid=fid; 正确运行select afkeynode into kn from APPFOUNDATION af where afappid=appid and affoundationid=foundationid; 运行阶段报错提示ORA:exact fetch returns more than requested number of rows
在存储过程中关于出现null的问题
假如有一个表X定义如下
create table X(
id varchar() primary key not null
vcount number() not null
bid varchar() not null 外键
);
假如在存储过程中使用如下语句
select sum(vcount) into fcount from X where bid=xxxxxx如果X表中不存在bid=xxxxxx的记录则fcount=null(即使fcount定义时设置了默认值例如fcount number()=依然无效fcount还是会变成null)这样以后使用fcount时就可能会出现问题所以在这里我们最好先判断一下
if fcount is null then fcount:=;end if;
Hibernate调用Oracle的存储过程
thispnumberManagergetHibernateTemplate()execute(new HibernateCallback() {public Object doInHibernate(Session session)throws HibernateException SQLException {CallableStatement cs = nnection()prepareCall({call modifyapppnumber_remain(?)});cssetString( foundationid);csexecute();return null;}});