Roeland
Member³
Package:
SQL Window/Explain Plan Window:
Ctrl_Click on the first Test_Cons.MY_CONSTANT doesn't work, but doing the same on the second does work.
PL/SQL Developer 9.0.6.1665
PL/SQL Developer 10.0.0.1687 (Beta6)
PS: Note that both will not run, but I was changing constants.
PPS: By the way, what is the easiest way to replace constants when copying code from packages?
Code:
create or replace package TEST_CONS is
MY_CONSTANT constant number := 0;
end TEST_CONS;
/
create or replace package body TEST_CONS is
end TEST_CONS;
/
SQL Window/Explain Plan Window:
Code:
select (case p_In
when Test_Cons.MY_CONSTANT then 'Ok'
end)
from Dual t;
select Test_Cons.MY_CONSTANT into Dummy
from Dual t;
Ctrl_Click on the first Test_Cons.MY_CONSTANT doesn't work, but doing the same on the second does work.
PL/SQL Developer 9.0.6.1665
PL/SQL Developer 10.0.0.1687 (Beta6)
PS: Note that both will not run, but I was changing constants.
PPS: By the way, what is the easiest way to replace constants when copying code from packages?