Subject | Re: [firebird-support] Repeat Until construct? |
---|---|
Author | Ivan Prenosil |
Post date | 2007-11-19T17:19:30Z |
>I don't see a way in PSQL to have a looping construct that checks theNo, but you can easily simulate it:
> conditon after the code executes vs a WHILE loop. Does such a thing
> exist that I've missed?
WHILE (0=0) DO BEGIN
... your code ...
IF (... condition ...) THEN BREAK;
END
Ivan
http://www.volny.cz/iprenosil/interbase/