程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle自定義異常,oracle自定義

oracle自定義異常,oracle自定義

編輯:Oracle教程

oracle自定義異常,oracle自定義


1.彈出錯誤框:

示例代碼:

declare 
v_count number;
begin 
  select count(*) into v_count from dept;
  if v_count < 10 then 
    raise_application_error(-20001,'數量小於10');
  end if;
end;

執行結果:

 

2.控制台顯示:

示例代碼:

declare 
v_count number;
my_exp exception;
begin 
  select count(*) into v_count from dept;
  if v_count < 10 then 
    raise my_exp;
  end if;
  exception 
    when my_exp then 
      dbms_output.put_line('數量小於10');
    when others then 
      dbms_output.put_line('其他異常');
end;

執行結果:

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved