异常是否会引起oracle事物回滚

原理上说,异常是不会终止事务的。但是如果异常传递到了调用环境中,由于数据库的原子性,服务器会对事物进行回滚,所以就会让人有异常终止事务的假象。

sample1:
BEGIN
insert into test_table values(1,11);
Declare
i number:=1;
Cu_ex Exception;
Begin
insert into test_table values(2,22);
If (i=1) then
Raise Cu_ex;
End if;
DBMS_OUTPUT.put_line('TEST');
commit;
Exception
When Cu_ex then
Raise_application_error(-20000,'has an customer error'||sqlerrm);
When others then
Raise_application_error(-20001,'has an error'||sqlerrm);
End;
END;
/


在这个例子中,两条insert都会被回滚。

sample2:
BEGIN
insert into test_table values(1,11);
Declare
i number:=1;
Cu_ex Exception;
Begin
insert into test_table values(2,22);
If (i=1) then
Raise Cu_ex;
End if;
DBMS_OUTPUT.put_line('TEST');
commit;
Exception
When Cu_ex then
Raise_application_error(-20000,'has an customer error'||sqlerrm);
When others then
Raise_application_error(-20001,'has an error'||sqlerrm);
End;
EXCEPTION
WHEN OTHERS THEN
NULL;
END;
/
在这个例子中,两条insert都不会回滚,因为异常被捕捉并处理了,并没有传递到调用环境中。

顾推荐在处理异常的时候,不要捕获 when others,让它传递的客户端。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值