X X3mE Member² Mar 14, 2012 #1 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.
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.
Marco Kalter Administrator Staff member Mar 14, 2012 #1 One would indeed expect this to work. We'll check it out.
LMW Member² Jun 20, 2012 #1 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
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