Nico Mezeret
Nico Mezeret

Reputation: 203

Reasons why PL/SQL Developer's debugger won't enter a procedure?

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

Answers (1)

Marco
Marco

Reputation: 1349

Try adding debug information like @Carlo Sima mentioned.

Like this:

Add debug information

Upvotes: 15

Related Questions