|
|
FULL A - Z Oracle Function Library (formerly named "Morgan's Library")
Term: LOOP
Definition: LOOP 2. The FOR Loop The FOR loop repeats, incrementing or decrementing its internal counter until the counter reaches its pre-programmed limit, set by the lower_bound and higher_bound parameters. FOR counter IN [REVERSE] lower_bound..higher_bound LOOP 3. The WHILE Loop The WHILE loop repeats until a given condition is met. If the condition is not met it will repeat forever. If the condition is met or satisfied before the loop begins, it will not execute at all. WHILE condition LOOP Example Usage: The example FOR loop below will execute ten times, printing the word 'testing' each time. BEGIN Related Links:
Related Code Snippets:
|
Home | Search | Code Library | Sponsors | Privacy | Terms of Use | Contact Us | © 2003 - 2024 psoug.org |