|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
在PLSQL中,raise id可查到WHEN id,可一一對應.
但other的就不知道如何對應.煩請大師們指點一下.多謝!
比如,以下一段sql,other就不知道如何去追蹤!
-----------------------------------------------------------------------
-- check error;
if(l_err_rec.l_err_num <> 0 and l_err_rec.l_err_num is not null) then
raise process_error;
end if;
EXCEPTION
when process_error then
o_ae_err_rec.l_err_num := l_err_rec.l_err_num;
o_ae_err_rec.l_err_code := l_err_rec.l_err_code;
o_ae_err_rec.l_err_msg := l_err_rec.l_err_msg;
when others then
o_ae_err_rec.l_err_num := SQLCODE;
o_ae_err_rec.l_err_code := '';
o_ae_err_rec.l_err_msg := 'CSTPAPBR.inventory_accounts' || to_char(l_stmt_num) ||
substr(SQLERRM,1,180);
END inventory_accounts; |
|