2012년 7월 26일 목요일

Forms 에서 사용자 에러 처리 하기

declare
  condition_err     exception;  -- 에러 처리할 종류대로 변수를 선언한다.
begin

  -- 에러 처리할 조건을 확인하고 만족시 에러 발생
  if  item is null then
    raise condition_err;
  end if;

exception when condition_err then
  message ( '에러 발생');
  raise from_trigger_failure;
end;