Multiple choice technology databases

How do you handle an Exception?

  1. a) Trap it with a Handler

  2. b) Propagate it to the Calling Environment

  3. c) a & then b

  4. d) b & then a

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In PL/SQL, you handle exceptions by either trapping them locally using an exception handler block, or by allowing them to propagate unhandled to the calling environment to be managed at a higher level.