Claus Pedersen Member³ Mar 16, 2009 #1 Code: CREATE OR REPLACE PROCEDURE tester IS var NUMBER; BEGIN var := 1; FOR i IN 1..2 LOOP var := 1; END LOOP; var := 1; END; I get the hint for lines 4 and 8, but not for 6. Could this be corrected?
Code: CREATE OR REPLACE PROCEDURE tester IS var NUMBER; BEGIN var := 1; FOR i IN 1..2 LOOP var := 1; END LOOP; var := 1; END; I get the hint for lines 4 and 8, but not for 6. Could this be corrected?