PA/SQL异常处理

来源:互联网 发布:js formdata 上传图片 编辑:程序博客网 时间:2024/06/08 07:19

1、声明异常
 异常名 EXCEPTION;
2、抛出异常
 RAISE 异常名
3、处理异常
 抛出异常后的逻辑代码不会被继续执行

异常的定义使用
   ―――――――――――――――――――――――――――――――――――――
    begin
        dbms_output.put_line(1/0);
   exception
           when others then
               dbms_output.put_line('error');
    end;

   declare
           e_myException exception;
    begin
           dbms_output.put_line('hello');
           raise e_myException; --raise抛出异常,用此关键字,抛出后转到自定义的e_myException,执行其里面的putline函数后,再跳到end处,结束PL/SQL块,raise接下面的2句不会继续执行。
           dbms_output.put_line('world');
           dbms_output.put_line(1/0);
   exception
           when e_myException then
               dbms_output.put_line(sqlcode); --当前会话执行状态,错误编码
               dbms_output.put_line(sqlerrm); --当前错误信息
               dbms_output.put_line('my error');
           when others then
               dbms_output.put_line('error');
    end;

0 0