Debugger

Mukul

Member
I can't make the debugger work. it happens as soon as I step into the proc. I have added debug option and "update call stack after each step" is unchecked. To test it I created a simple proc like this but no luck:
create or replace procedure pz_test(p_test_in varchar2) is
begin
DBMS_OUTPUT.put_line('Here is the value: '||p_test_in);
end pz_test;
BTW I am using version 8.04.1514.
PLEASE HELP!
 
Works for me (PL/SQL Dev 8.0.4.1514, Oracle 10.2.0.4).

By "I have added debug option" do you mean you compiled the procedure for debug (right-click, select 'Add debug information' or 'alter procedure pz_test compile debug' from command line)? What happens when you try to debug it?

What do you see in user_plsql_object_settings.plsql_debug where name = 'PZ_TEST'?
 
Back
Top