Debuging step into doesn't "step into"

Mindaugas

Member²
I have a test like this:

Code:
declare
  -- Boolean parameters are translated from/to integers:
  -- 0/1/null <--> false/true/null
  p_su_atidetais boolean := sys.diutil.int_to_bool(:p_su_atidetais);
  -- Non-scalar parameters require additional processing
 CURSOR cur_rec1
 IS
   SELECT
   * FROM DUOMENYS WHERE asm_id = 116048;
   rec duomenys%ROWTYPE;
begin
  -- Call the procedure
  OPEN cur_rec1;
  LOOP
   FETCH cur_rec1 INTO rec;
   EXIT WHEN cur_rec1%NOTFOUND;
  pkg_perkelimas2.perkelti(cur_rec => rec,
                           p_su_atidetais => p_su_atidetais);
                           END LOOP;
end;
I would like to see what is happening inside the package, but it doesn't step into it.
Sometimes it does, I don't get it? Are there any special conditions?
 
Found solution:
package didn't have "ADD debug information" specified.
Maybe pl/sql developer could check, if this option is specified? And maybe user wants to enable it?
 
Back
Top