Claus Pedersen
Member³
I have the following code:
When I place the cursor on the variable "counter" in line 2 or 5 all occurences of the variable are highlighted (lines 2,4, and 5). When I place the cursor on the variable in line 4, nothing is highlighted. Why?
Code:
PROCEDURE test IS
counter PLS_INTEGER DEFAULT 7;
BEGIN
FOR i IN 1..counter LOOP
dbms_output.put_line (counter-i);
END LOOP;
END;