This script demonstrates variable visibility : While Loop « PL SQL « Oracle PL / SQL






This script demonstrates variable visibility

    
SQL>
SQL>
SQL> SET SERVEROUTPUT ON
SQL>
SQL> DECLARE
  2     visibleValue VARCHAR2(30);
  3     hiddenValue VARCHAR2(30);
  4  BEGIN
  5     visibleValue := 'visible';
  6     hiddenValue := 'hidden';
  7
  8     DBMS_OUTPUT.PUT_LINE('OUTER BLOCK');
  9     DBMS_OUTPUT.PUT_LINE(visibleValue);
 10     DBMS_OUTPUT.PUT_LINE(hiddenValue);
 11
 12     DECLARE
 13        hiddenValue NUMBER(10);
 14     BEGIN
 15        DBMS_OUTPUT.PUT_LINE('INNER BLOCK');
 16        hiddenValue := 'inner hiddenValue';
 17        DBMS_OUTPUT.PUT_LINE(hiddenValue);
 18     EXCEPTION
 19        WHEN OTHERS
 20        THEN
 21           DBMS_OUTPUT.PUT_LINE('hiddenValue of type VARCHAR2 was...hidden');
 22     END;
 23  END;
 24  /
OUTER BLOCK
visible
hidden
INNER BLOCK
hiddenValue of type VARCHAR2 was...hidden

PL/SQL procedure successfully completed.

   
    
    
    
  








Related examples in the same category

1.Put two statement in while loop
2.Example of a WHILE loop that never executes
3.Corrected WHILE loop that executes
4.While Loop with condition
5.Change while loop counter
6.While loop with complex conditions
7.Insert value in while loop
8.Do calculation with while loop counter
9.Call EXIT to jump out of a while loop
10.Use EXIT WHEN to exit a while loop
11.WHILE..LOOP, Cursor Loop
12.WHILE Loop: This condition will evaluate to NULL, since v_Counter is initialized to NULL by default
13.WHILE Loop: Test the loop counter before each loop iteration to insure that it is still less than 50
14.WHILE Loop
15.The WHILE loop uses a loop index value as its gate on entry criterion:
16.While loop and number counter