Cursor record visual drop down stopped working?

SaKa

Member²
Hi,
It seems the cursor for-loop visual drop down stopped showing.
basically the below function compiles fine:

FUNCTION Test RETURN NUMBER
IS
cursor get_rec is
select t.contract,t.company from site t;
BEGIN
for rec_ in get_rec loop
return rec_.CONTRACT;
end loop;
RETURN null;
END Test;

within the for-loop, when i normally type the rec_ and type the period(.) a drop down used to appear to list available columns for the cursor (CONTARCT and COMPANY for above example) . It stopped working for me recently. Its only for the cursor. When i type "t" and dot in the cursor section it still popup works fine. Normally within the cursor for-loop this drop down doesn't appear if the cursor format isn't correct or view used doesn't exist, but this function compiles fine.

As far as i see it was working fine until recent patch. My PLSQLD is Version 13.0.5.1908 (32 bit).

Thanks
Sak
 
Last edited:
Back
Top