Auto complete not working

X3mE

Member²
Hi,

When I have code like this:

Code:
for r_rec in (select t.column from TABLE t) loop

the auto complete when I type "t." is not working.

I think this was working with previous versions of PL/SQL developer, I'm not sure when it stopped.

Can you fix this?

Thanks.
 

yes, in Version 8 it is working

as a workaround add space before SELECT keyword and it will work

for r_rec in ( select t.column from TABLE t) loop
 
Back
Top