13.PL_SQL——异常处理

发布时间:2020-05-27 09:31:29 作者:wuyeyoulanjian
来源:网络 阅读:938

==================== Example 1====================

 

SQL> create table emp_tmp as select * from employees;

 

Table created.

 

SQL> select last_name from emp_tmp wherefirst_name='John';

 

LAST_NAME

-------------------------

Chen

Seo

Russell

 

SQL> edit

 

DECLARE

    v_lnameVARCHAR2(15);

BEGIN

    SELECT last_nameINTO v_lname

    FROM emp_tmp

    WHERE first_name ='John';

 

   DBMS_OUTPUT.PUT_LINE('John''s last name is: ' || v_lname);

END;

/

 

SQL> @notes/s62.sql

DECLARE

*

ERROR at line 1:

ORA-01422: exact fetch returns more than requested number ofrows

ORA-06512: at line 4

 

 

SQL> edit

 

DECLARE

    v_lnameVARCHAR2(15);

 

BEGIN

    SELECT last_nameINTO v_lname

    FROM emp_tmp

    WHERE first_name ='John';

 

   DBMS_OUTPUT.PUT_LINE('John''s last name is: ' || v_lname);

 

EXCEPTION

    WHEN TOO_MANY_ROWSTHEN

       DBMS_OUTPUT.PUT_LINE('Your select statement retrieved multiple rows.Condider using a cursor.');

    WHEN OTHERS THEN

       DBMS_OUTPUT.PUT_LINE('You meet an error!');

END;

/

 

SQL> @notes/s62.sql

Your select statement retrieved multiple rows. Condiderusing a cursor.

 

PL/SQL procedure successfully completed.

 

 

SQL> truncate table emp_tmp;

 

Table truncated.

 

SQL> @notes/s62.sql

You meet an error!

 

PL/SQL proceduresuccessfully completed


13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

==================== Example 2====================

 

SQL> edit

 

 

DECLARE

    v_lnameVARCHAR2(15);

 

BEGIN

    SELECT last_nameINTO v_lname

    FROM emp_tmp

    WHERE first_name ='John';

 

   DBMS_OUTPUT.PUT_LINE('John''s last name is: ' || v_lname);

   <<welcomeback>>

   DBMS_OUTPUT.PUT_LINE('Welcome back!');

 

EXCEPTION

    WHEN TOO_MANY_ROWSTHEN

       DBMS_OUTPUT.PUT_LINE('Your select statement retrieved multiple rows.Condider using a cursor.');

    WHEN OTHERS THEN

       DBMS_OUTPUT.PUT_LINE('1: You meet an error!');

        GOTOwelcomeback;

       DBMS_OUTPUT.PUT_LINE('2: Game Over!');

       <<gohere>>

       DBMS_OUTPUT.PUT_LINE('3: You will be ended!');

END;

/

 

SQL> @notes/s63.sql

                GOTO welcomeback;

                *

ERROR at line 18:

ORA-06550: line 18, column 3:

PLS-00375: illegal GOTO statement; this GOTO cannot branchto label

'WELCOMEBACK'

ORA-06550: line 18, column 3:

PL/SQL: Statement ignored

 

 

SQL> edit

 

DECLARE

    v_lname VARCHAR2(15);

 

BEGIN

    SELECT last_nameINTO v_lname

    FROM emp_tmp

    WHERE first_name ='John';

 

   DBMS_OUTPUT.PUT_LINE('John''s last name is: ' || v_lname);

   <<welcomeback>>

   DBMS_OUTPUT.PUT_LINE('Welcome back!');

 

EXCEPTION

    WHEN TOO_MANY_ROWSTHEN

       DBMS_OUTPUT.PUT_LINE('Your select statement retrieved multiple rows.Condider using a cursor.');

    WHEN OTHERS THEN

       DBMS_OUTPUT.PUT_LINE('1: You meet an error!');

        --GOTOwelcomeback;

        GOTO gohere;

       DBMS_OUTPUT.PUT_LINE('2: Game Over!');

       <<gohere>>

 

       DBMS_OUTPUT.PUT_LINE('3: You will be ended!');

END;

 

 

SQL> @notes/s63.sql

1: You meet an error!

3: You will be ended!

 

PL/SQL proceduresuccessfully completed


13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

13.PL_SQL——异常处理

==================== Example 3====================

 

SQL> edit

 

DECLARE

        e_insert_excepEXCEPTION;

 

        PRAGMAEXCEPTION_INIT(e_insert_excep, -01400);

 

BEGIN

        INSERT INTOdepartments(department_id, department_name) VALUES (280, NULL);

 

EXCEPTION

        WHENe_insert_excep THEN

                DBMS_OUTPUT.PUT_LINE('InsertOperation Failed!');

               DBMS_OUTPUT.PUT_LINE(SQLERRM);

END;

/

 

SQL> @notes/s64.sql

Insert Operation Failed!

ORA-01400: cannot insert NULL into("HR"."DEPARTMENTS"."DEPARTMENT_NAME")

 

PL/SQL proceduresuccessfully completed


推荐阅读:
  1. uLua异常处理
  2. kvm 异常处理收集

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

oracle pl/sql exception handling

上一篇:还不清楚HashMap吗?读完这篇你就懂了!

下一篇:私域流量的优势是什么?

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》