分区语句整理 8

来源:互联网 发布:vibe算法 编辑:程序博客网 时间:2024/04/30 18:12

 end loop;

    commit;

 

    oi_return := 0;

 

exception

    when exc_error1 then

        /**

          * @field-mapping oi_return = -1

          */

 

        oi_return := -1;

 

    when exc_error2 then

        /**

          * @field-mapping oi_return = -2

          */

 

        oi_return := -2;

 

    when exc_error3 then

        /**

          * @field-mapping oi_return = -3

          */

 

        oi_return := -3;

 

    when others then

        /**

        * @field-mapping oi_return = 1

        */

        oi_return := sqlcode;

 

    /** END */

end;

0 0
原创粉丝点击