Roeland
Member³
PL/SQL Developer version 9.0.4.1644
Compiling this package gives errors in my version of PL/SQL Developer. This used to work without problems.
Remove the 'TEST_COMPILE' in procedure 'Test_Dual' and everything compiles as usual.
Kind regards,
Roeland
Code:
create or replace package TEST_COMPILE is
type t_Dual_Cursor is ref cursor return Dual%rowtype;
procedure View_Dual (p_Cursor out t_Dual_Cursor);
end TEST_COMPILE;
/
create or replace package body TEST_COMPILE is
procedure View_Dual (p_Cursor out t_Dual_Cursor) is
begin
open p_Cursor for
select *
from Dual;
end View_Dual;
procedure Test_Dual is
c_Cursor t_Dual_Cursor;
begin
TEST_COMPILE.View_Dual (p_Cursor => c_Cursor);
end Test_Dual;
end TEST_COMPILE;
/
Compiling this package gives errors in my version of PL/SQL Developer. This used to work without problems.
Remove the 'TEST_COMPILE' in procedure 'Test_Dual' and everything compiles as usual.
Kind regards,
Roeland