QUOTE:
原帖由
DragonBill 于 2008-6-25 14:02 发表
假设有Funcation funWritLog call procedure p_di_fs_log,
在 funWritLog 中有, 中途中止或异常中止两种要write log
那么在funWritLog中你应该写
begin
...
if normal_Terminate then --中途中止
call p_di_fs_log(...)
end if;
...
exception --异常中止
when exception then
call p_di_fs_log(...)
...
end;