概述
通常用户自定义异常是在声明后才能产生,但如果我们使用RAISE_APPLICATION_ERROR函数就可以直接产生异常,并且能为异常定义用户自己指定的错误信息。执行完RAISE_APPLICATION_ERROR函数后,控制权转到块外的调用环境。
RAISE_APPLICATION_ERROR的定义如下所示:
RAISE_APPLICATION_ERROR(error_number,error_message,[keep_errors]);
其中,error_number是一个错误号,值在-20000到-20999之间,error_message是与该错误相连的错误消息文本,它最大不能超过512个字符。Keep_errors是一个boolean值。该参数是可选的。如果keep_errors为TRUE,则这个新的错误将加在已产生的错误列表之后。如果keep_errors为FALSE,则这个新错误将代替当前的错误列表。
Eg:
create or replace procedure salaryAdd(
p_author_code in auths.author_code%type,
p_addSalary in auths.salary%type
) as
v_currentSalary auths.salary%type;
v_maxSalary auths.salary%type default 1000;
begin
update auths set salary=salary+p_addSalary where author_code=p_author_code
returning salary into v_currentSalary;
if sql%notfound then
raise_application_error(-20001,'没有代码为'||p_author_code||'的作家存在');
end if;
commit;
end;
/
最后
以上就是忧虑衬衫为你收集整理的RAISE_APPLICATION_ERROR函数的全部内容,希望文章能够帮你解决RAISE_APPLICATION_ERROR函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复