I found diference between code contents dipslaying in program window of PL/SQL Developer v.5 and v.7
I created new body (one file) containing this text:
create or replace view test_v as
select *
from abc_class
;
create or replace package body Test is
function Test_F return number is
begin
return NULL;
end;
begin
NULL;
end Test;
/
in version 5 program window displays code contents. in version 7 doesn't.
changing ";" to "/" after create or replace view statement fixes problem. code contents is displayed correctly in both versions. Problem is, that we have many source codes using ";" instead "/".
Is there any possibility how to set up v.7 to process sources the same way as v.5.
Thanks
Ales Vancl
I created new body (one file) containing this text:
create or replace view test_v as
select *
from abc_class
;
create or replace package body Test is
function Test_F return number is
begin
return NULL;
end;
begin
NULL;
end Test;
/
in version 5 program window displays code contents. in version 7 doesn't.
changing ";" to "/" after create or replace view statement fixes problem. code contents is displayed correctly in both versions. Problem is, that we have many source codes using ";" instead "/".
Is there any possibility how to set up v.7 to process sources the same way as v.5.
Thanks
Ales Vancl