07_异常

/*
 * 异常的分类:
 1:系统异常
 
 2:用户自定义异常
 
 捕获异常:先具体的异常,最后是others异常。
 
 SQLCode
 
 SQLErrm
 */

declare
  v_i   number;
  v_str varchar2(10);
begin
  --v_i := 1 / 0;
  v_str := 'abc';
  begin
    v_i := to_number(v_str);
  exception
    when others then
      begin
        dbms_output.put_line('处理异常,让程序继续执行');
      end;
  end;
  dbms_output.put_line('程序的其他代码');
exception
  when Zero_divide then
    begin
      dbms_output.put_line('被除数为0,错误代码 = ' || SQLCode ||
                           ',错误信息 = ' || SQLErrm);
    end;
  when Value_error then
    dbms_output.put_line('转换异常');
  
  when others then
    begin
      dbms_output.put_line('other Exception,错误代码 = ' || SQLCode ||
                           ',错误信息 = ' || SQLErrm);
    end;
end;
/*
 * 自定义异常的步骤
 
 1:declare中声明异常
 
 2:begin块中手动触发异常
 
 3:在exception块中捕获异常。
 */
 
 

declare
  --声明一个异常
  v_exception Exception;

  v_username varchar2(100);
begin
  v_username := 'test';
  if v_username != 'admin' then
    raise v_exception;
  end if;
exception
  when v_exception then
  
    begin
      dbms_output.put_line('触发自定义异常');
      raise_application_error(-20003, 'v_username的值不等于admin');
    end;
  when others then
    null;
end;


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值