例外が発生したときに変数に値を代入したい。pl SQLのすべての例外ケースで何かを実行する方法はありますか?
exception
when excep1 then
var = true;
when excep2 then
var = true;
end;
私は何かのようにしたいですか?
begin
begin
-- do something
exception
when others then
var = true;
raise; -- re-raise the current exception for further exception handling
end;
exception
when excep1 then
-- do something
when excep2 then
-- do something
end;
おかげでジョン、それは本当に素晴らしいことです。 – Vaandu