v.5 to V.7 code contents difference

alvacz

Member
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
 
This is caused by the fact that the file begins with a "create or replace view" statement without a trailing slash. We'll see what we can do to fix this.
 
I'd also appreciate very much getting this fixed.
We have the same problem, and it practically blocks me from upgrading to 7.x, I still have to use 5.x.
Otherwise I'm very pleased with this product, it's one of the best tools I work with but it's a real pain that 7 has a lot of new features I'd like to use but I cannot because able to navigate in that way is essential to me.
We have a couple of thousand source files and almost all of them affected by this thing and it's not only me, but several hundred other developers in the company.

Thanks a lot in advance.
Janos
 
Hi,
I have the same problem in v 7 (7.0.3.1123)
But my experience show PL/SQL Developer has a problem not with slash(/) but with recognition of
CREATE OR REPLACE VIEW clause at Code Contents
If I use
CREATE VIEW TEST_V ...
everything is OK.

Thanks in advance for correcting it.
Tomasz
 
Back
Top