Oracle
 sql >> Database >  >> RDS >> Oracle

Gestione delle eccezioni in pl/sql

Puoi creare blocchi nidificati:

create or replace procedure Trial
    is 
Begin
  begin
    ---Block A--
  EXCEPTION
    when others then
      insert into error_log values('error');
  end;
  begin
    --Block B ----
  end;
end;