Trying to setup a debug session with pl/sql debugger and I'm having some trouble.
First, I bring up the test window, then I put a simple select * from mytable; statement in after the begin statement so that my code looks like this
declare
i integer;
begin
SELECT * FROM mytable;
end;
Then I try to toggle breakpoint on the select line and it wont do it. Next I hit 'start' from the debug drop down, then I hit 'run' which appears to cause nothing to happen (I should see some output from the select statement at the very least). Then I click through the tabs to 'profiler' which then hangs the debugger entirely. Looking on the server it appears hung on a pipeget while executing a debugend statement.
what am I doing wrong?
btw, this is on pl/sql developer 9.
First, I bring up the test window, then I put a simple select * from mytable; statement in after the begin statement so that my code looks like this
declare
i integer;
begin
SELECT * FROM mytable;
end;
Then I try to toggle breakpoint on the select line and it wont do it. Next I hit 'start' from the debug drop down, then I hit 'run' which appears to cause nothing to happen (I should see some output from the select statement at the very least). Then I click through the tabs to 'profiler' which then hangs the debugger entirely. Looking on the server it appears hung on a pipeget while executing a debugend statement.
what am I doing wrong?
btw, this is on pl/sql developer 9.