Was this helpful?
WHILE - ENDWHILE
Valid in: DBProc, TblProc
The WHILE - ENDWHILE statement repeats a series of statements while a specified condition is true.
The WHILE - ENDWHILE statement has the following format:
[label:]      WHILE boolean_expr DO
                            statement; {statement;}
                   ENDWHILE;
TheWHILE - ENDWHILE statement defines a program loop. This statement can only be used inside a database procedure.
The Boolean expression (boolean_expr) must evaluate to true or false. A Boolean expression can include comparison operators (' =',' >', and so on) and these logical operators:
AND
OR
NOT
The statement list can include any series of legal database procedure statements, including another WHILE statement.
As long as the condition represented by the Boolean expression remains true, the series of statements between DO and ENDWHILE is executed. The condition is tested only at the start of each loop. If values change inside the body of the loop so as to make the condition false, execution continues for the current iteration of the loop, unless an ENDLOOP statement is encountered.
The ENDLOOP statement terminates a WHILE loop. When ENDLOOP is encountered, the loop is immediately closed, and execution continues with the first statement following ENDWHILE. For example:
WHILE condition_1 DO
        statement_list_1
        IF condition_2 THEN
                ENDLOOP;
        ENDIF;
        statement_list_2
ENDWHILE;
In this case, if condition_2 is true, statement_list_2 is not executed in that pass through the loop, and the entire loop is closed. Execution resumes at the statement following the ENDWHILE statement.
A WHILE statement can be labeled. The label enables the ENDLOOP statement to break out of a nested series of WHILE statements to a specified level. The label precedes WHILE and is specified by a unique alphanumeric identifier followed by a colon, as in the following:
A: WHILE...
The label must be a legal object name. For details, see the chapter “Introducing SQL.” The ENDLOOP statement uses the label to indicate which level of nesting to break out of. If no label is specified after ENDLOOP, only the innermost loop currently active is closed.
The following example illustrates the use of labels in nested WHILE statements:
label_1:            WHILE condition_1 DO
                     statement_list_1
label_2:                   WHILE condition_2 DO
                             statement_list_2
                             IF condition_3 THEN
                                    ENDLOOP label_1;
                             ELSEIF condition_4 THEN
                                    ENDLOOP label_2;
                             ENDIF;
                             statement_list_3
                     ENDWHILE;
                     statement_list_4
             ENDWHILE;
In this example, there are two possible breaks out of the inner loop. If condition_3 is true, both loops are closed, and control resumes at the statement following the outer loop. If condition_3 is false but condition_4 is true, the inner loop is exited and control resumes at statement_list_4.
If an error occurs during the evaluation of a WHILE statement, the database procedure terminates and control returns to the calling application.
Last modified date: 04/03/2024