首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

Oracle如何用EXCEPTION实现

2014-01-28 
过程中一段: select count(*) into v_count from A where 12 if v_count 0 then raise_application_err

过程中一段:
select count(*) into v_count from A where 1>2;
if v_count = 0 then raise_application_error(-20001,'未找到产品');
select count(*) into v_count from B where 1>2;
if v_count = 0 then raise_application_error(-20001,'无此合同);

如何用EXCEPTION实现?自定义的EXCEPTION不怎么会用

Exception e_a,
Exception e_b,
.............
select a into v_a from A where 1>2;
if sql%notfound then raise e_a end if;
select b into v_b from B where 1>2;
if sql%notfound then raise e_b end if;
............
Exception
when e_a then raise_application_error(-20001,'未找到产品');
when e_b then raise_application_error(-20001,'无此合同');
end;

请问这么写哪不对?或者应该怎么写?



------解决方法--------------------------------------------------------
不是很明确你想做成什么样子的,底下是一个我写一个trigger时,加的一个exceptiond处理,你看看先

 

Java code
create or replace trigger tri_test_3_insertafter insert or update on test_3for each rowdeclarea exception;--pragma exception_init(a,-1476);v number;pragma autonomous_transaction;beginselect count(1) into v from test_3;dbms_output.put_line(v||'---'||:new.name||'---'||:new.ida||'---'||:new.idb);--raise_application_error(-11111, 'error');commit;ExceptionWhen othersthenROLLBACK;--raise a;raise;end;
------解决方法--------------------------------------------------------
这里可以用raise来继续上抛已经catch到的异常

也可以用raise a,上抛指定的异常

或者用
raise_application_error(-11111, 'error');这样的方式抛一个自己定义的异常。
------解决方法--------------------------------------------------------
Exception e_a,
Exception e_b,要放在定义段中
后面的逗号要改成分号

if sql%notfound then raise e_a end if;
可以直接去掉,如果找不到数据的话直接就发生异常,下面的不会执行
可以用select count(*) into v_count from A where 1>2;来代替
判断若count为0,出发异常
------解决方法--------------------------------------------------------
这样的要求不用自定义exception吧
SQL code
declarev_a A.a%type;v_b B.b%type; beginbeginselect a into v_a from A where 1>2; Exception when NO_DATA_FOUND then raise_application_error(-20001,'未找到产品');end;beginselect b into v_b from B where 1>2; Exception when NO_DATA_FOUND then raise_application_error(-20001,'无此合同');end;end; /
        

热点排行