ORACLE_存储过程一

存储过程就是对业务关系复杂的sql语句的封装,sql语句以程序块的形式被封装到了数据库中,写好之后无论是java、还是.net都可以向使用sql一样使用这就是数据库开发。

oracle 存储过程的基本语法

create or replace  procedure testPro(
  arg1 in number,  --in 传递参数
  arg2 out number, --out 返回参数
  arg3 in out number -- in out 传递和返回参数 
)
create or replace procedure testPro(
     inarg in number,
     outarg out number,
     inoutarg in out number
)is v_localvaliable number;
begin 
  --分配inarg给v_localvaliable
  v_localvaliable :=inarg;
  --分配7给inarg这是不合法的,因为声明是in
  inarg:=7;
  --分配7给outarg这是合法的,因为声明是out
  outarg:=7;
  --分配outarg给v_localvaliable 合法
  v_localvaliable:=outarg;
  --分配inoutarg给v_localvaliable 合法 in out 
  v_localvaliable:=inoutarg;
  --分配7给inoutarg 合法 in out
  inoutarg:=7;
end testPro;
create or replace procedure delemp(
   v_empno in emp.empno%type
)as
no_result exception;

begin 
   delete from emp where empno=v_empno;
   if SQL%notfound then 
      raise no_result;
   end if;
   dbms_output.put_line('编码为'||v_empno||'的员工已被除名!');
   exception 
       when no_result then 
          dbms_output.put_line('你需要的数据不存在');
       when others then 
          dbms_output.put_line('发生其它错误');
end delemp;


1. 使用%TYPE

在许多情况下,PL/SQL变量可以用来存储在数据库表中的数据。在这种情况下,变量应该拥有与表列相同的类型。例如,students表的first_name列的类型为VARCHAR2(20),我们可以按照下述方式声明一个变量:

DECLARE

       v_FirstName VARCHAR2(20);

但是如果first_name列的定义改变了会发生什么(比如说表改变了,first_name现在的类型变为VARCHAR2(25))?那就会导致所有使用这个列的PL/SQL代码都必须进行修改。如果你有很多的PL/SQL代码,这种处理可能是十分耗时和容易出错的。

这时,你可以使用”%TYPE”属性而不是将变量类型硬性编码。

例如:

DECLARE

       v_FirstName students.first_name%TYPE;

 

通过使用%TYPE,v_FirstName变量将同students表的first_name列的类型相同(可以理解为将两者邦定起来)。



--创建存储过程
create or replace procedure  testPro
(
   param1 in number, --参数
   param2 in number
)is 
  variable1 integer :=0; --变量
  variable2 date ;
begin 

end testPro


--将select查询结果存入到变量中,可以同时将多个列存储到多个变量中,必须有一条记录否则
--抛出异常(如果没有记录抛出NO_DATA_FOUND)
begin
select col1,col2 into 变量1,变量2 from table1 where xxx;
exception  when NO_DATA_FOUND then xxx;
end;
--if 判断
if v_test=1 then 
begin 
  do someing
end;
end if;
--while 循环
while v_test=1 loop
begin 
xxxxx
end ;
end loop;
--变量赋值
v_test:=123;
--用for in 使用 cursor 
... 
is 
cursor cur is select * from xxx;
begin
  for cur_result in cur loop
    begin 
      v_sum:=cur_result.列名1+cur_result.列名2;
    end;
  end loop; 
end ;
--带参数的cursor
cursor c_user(c_id number) is select name from user where typeid=c_id;
open c_user(变量值);
loop 
fetch c_user into v_name;
exit fetch c_user%notfound;
do someing 
end loop;
close c_user;


关于oracle存储过程的若干问题备忘

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( 50primary  key  not  null,
vcount  number( 8not  null,
bid  varchar2( 50not  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;
                    }

                }
);

 

原文:http://www.cnblogs.com/happyday56/archive/2007/07/05/806830.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值