plsql与.net异常处理~


 procedure XX_PP() is

begin

   ...

exception

  when e_error then

    raise_application_error(-20001, "e_error exception: " || sqlerrm);

end;

 


try

{

  ...

 }

catch(exception e)

{

  Respone.Write(e.message);

}

相关文章:

  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
  • 2021-05-31
猜你喜欢
  • 2022-12-23
  • 2021-10-17
  • 2021-08-02
  • 2021-05-24
  • 2021-05-27
  • 2022-01-24
相关资源
相似解决方案