Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: resuming a loop

Re: resuming a loop

From: Pete Finnigan <pete_at_petefinnigan.com>
Date: Tue, 30 Sep 2003 19:24:09 +0100
Message-ID: <ob5WsCBJpce$EwRw@peterfinnigan.demon.co.uk>


Hi

I assume you mean like the C keyword "continue" ?

If so just use an if statement instead i.e

for i in 1..10 loop

        if continue condition = false then
        -- original loop processing here        
        end if;

end loop;

hth, kind regards

Pete

-- 
Pete Finnigan
email:pete_at_petefinnigan.com
Web site: http://www.petefinnigan.com - Oracle security audit specialists
Book:Oracle security step-by-step Guide - see http://store.sans.org for details.
Received on Tue Sep 30 2003 - 13:24:09 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US