Subject Re: [firebird-support] (unknown)
Author Helen Borrie
At 10:48 AM 30/05/2004 +0000, you wrote:
>Hi
>In a Delphi for-loop, i can use "continue" and "break".
>
>I have a FOR-SELECT-INTO-DO loop in a stored procedure.
>Are here equivalent statemts?

In Firebird 1.5, yes, sort-of. You can use a LEAVE statement to drop out
of any BEGIN...END block and pass execution to the statement following that
END statement.

There is nothing equivalent to Continue, but you can use a WHILE loop with
embedded IF..THEN branches to achieve similar flow of control

/heLen