首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > oracle >

pl sql中如何处理异常

2014-01-28 
pl sql中如何处理异常?------解决方法--------------------------------------------------------DECLAREv_

pl sql中如何处理异常?

------解决方法--------------------------------------------------------
DECLARE
  v_ErrorCode NUMBER;     -- Code for the error
  v_ErrorMsg VARCHAR2(200); -- Message text for the error
  v_CurrentUser VARCHAR2(8); -- Current database user
  v_Information VARCHAR2(100); -- Information about the error
  BEGIN
  /* Code which processes some data here */
  NULL;
  EXCEPTION
  WHEN OTHERS THEN
    -- Assign values to the log variables, using built-in
    -- functions.
    v_ErrorCode := SQLCODE;
    v_ErrorMsg := SQLERRM;
    v_CurrentUser := USER;
    v_Information := 'Error encountered on ' ||
    TO_CHAR(SYSDATE) || ' by database user ' || v_CurrentUser;
    -- Insert the log message into log_table.
    INSERT INTO log_table (code, message, info)
    VALUES (v_ErrorCode, v_ErrorMsg, v_Information);
  END;
  /
 

        

热点排行