Reputation: 203
I am trying to debug a procedure using PL/SQL developer's built-in debugger.
After stepping over the BEGIN
, when the debugger is over the actual procedure call, the "step-into" button will just execute the procedure without entering it.
Any suggestions would be appreciated.
Upvotes: 10
Views: 11806
Reputation: 1349
Try adding debug information like @Carlo Sima mentioned.
Like this:
Upvotes: 15