I create a test window with the following code
declare
-- Local variables here
i integer;
begin
-- Test statements here
i := 1;
dbms_output.put_line(i);
end;
when I run it normally through the execute button it works fine. When I use the start debugger button it crashes. is there a setting I'm missing
declare
-- Local variables here
i integer;
begin
-- Test statements here
i := 1;
dbms_output.put_line(i);
end;
when I run it normally through the execute button it works fine. When I use the start debugger button it crashes. is there a setting I'm missing
Last edited: