8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00

Document CORE-1209 - CONTINUE statement.

This commit is contained in:
asfernandes 2013-05-14 14:53:26 +00:00
parent 637d8dfff1
commit fba1b8d043
2 changed files with 11 additions and 0 deletions

View File

@ -791,6 +791,8 @@
* New feature CORE-1209 * New feature CORE-1209
CONTINUE statement CONTINUE statement
See also:
/doc/sql.extensions/README.ddl.txt
Contributor(s): Contributor(s):
Adriano dos Santos Fernandes <adrianosf at gmail.com> Adriano dos Santos Fernandes <adrianosf at gmail.com>

View File

@ -365,3 +365,12 @@ A change in a domain changes and validates all the tables using the domain.
An explicity NOT NULL on a field depending on a domain prevails over the domain. In this case, An explicity NOT NULL on a field depending on a domain prevails over the domain. In this case,
changing the domain to nullable does not automatically change the field to nullable. changing the domain to nullable does not automatically change the field to nullable.
14) CONTINUE statement
(Adriano dos Santos Fernandes)
Syntax: CONTINUE [<label>];
CONTINUE is a complementary command to BREAK/LEAVE and allows the restart (next iteration) of a
FOR/WHILE block.