Patrick Wolf
Member²
Hi,
it seems that the code assistant doesn't recognize FOR LOOP variables.
eg.
1) When I write the DBMS_Output statement and enter rT autocomple doesn't show rTest.
2) If you click afterwards on rTest it doesn't highlight all occurences of rTest as it normally does for other variables.
3) Refactor item also doesn't work
Regards
Patrick
it seems that the code assistant doesn't recognize FOR LOOP variables.
eg.
Code:
FOR rTest IN (SELECT 1 AS A, 2 AS B FROM DUAL)
LOOP
DBMS_Output.put_line('test: '||rTest.A);
END LOOP;
2) If you click afterwards on rTest it doesn't highlight all occurences of rTest as it normally does for other variables.
3) Refactor item also doesn't work
Regards
Patrick