I have a test like this:
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?
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;
Sometimes it does, I don't get it? Are there any special conditions?