Oracle PL/SQL - Are NO_DATA_FOUND Exceptions bad for stored procedure performance?

后端 未结 12 848
Happy的楠姐
Happy的楠姐 2021-02-03 23:14

I\'m writing a stored procedure that needs to have a lot of conditioning in it. With the general knowledge from C#.NET coding that exceptions can hurt performance, I\'ve always

12条回答
  •  鱼传尺愫
    2021-02-04 00:06

    If it's important you really need to benchmark both options!

    Having said that, I have always used the exception method, the reasoning being it's better to only hit the database once.

提交回复
热议问题