set serveroutput onDECLAREpename emp.ename%type;beginselect ename into pename from emp where ename=‘1213‘;exceptionwhenno_data_found then dbms_output.put_line(‘没有该数据‘);whenothers then dbms_output.put_line(‘其他exception‘);end;
set serveroutput onDECLAREpename emp.ename%type;beginselect ename into pename from emp where ename=‘1213‘;exceptionwhenno_data_found then dbms_output.put_line(‘没有该数据‘);whenothers then dbms_output.put_line(‘其他exception‘);end;
set serveroutput onDECLAREpnum number;beginpnum:=1/0;exceptionwhenzero_divIDe then dbms_output.put_line(‘0不能做除数‘);whenothers then dbms_output.put_line(‘其他exception‘);end;
set serveroutput onDECLAREpnum number;beginpnum:=‘abc‘;exceptionwhenvalue_error then dbms_output.put_line(‘value_erroe‘);whenothers then dbms_output.put_line(‘其他exception‘);end;总结
以上是内存溢出为你收集整理的oracle plsql 异常全部内容,希望文章能够帮你解决oracle plsql 异常所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)