WHENEVER Statement [ESQL]

Specifies error handling in an Embedded SQL program.

Quick Links:

Go to Examples

Go to Usage

Go to Standards

Go to Permissions

Syntax

WHENEVERSQLERROR | SQLWARNING | NOTFOUND }
   … { GOTO label | STOP | CONTINUE | C code; }

Examples

(back to top)

Usage

(back to top)

WHENEVER can be put anywhere in an Embedded SQL C program, and does not generate any code. The preprocessor generates code following each successive SQL statement. The error action remains in effect for all Embedded SQL statements from the source line of the WHENEVER statement until the next WHENEVER statement with the same error condition, or the end of the source file.

The default action is CONTINUE.

WHENEVER is provided for convenience in simple programs. Most of the time, checking the sqlcode field of the SQLCA (SQLCODE) directly is the easiest way to check error conditions. In this case, WHENEVER is not used. The WHENEVER statement causes the preprocessor to generate an if ( SQLCODE ) test after each statement.

Note: The error conditions are in effect based on positioning in the C language source file and not on when the statements are executed.

Standards

(back to top)

  • SQL—Vendor extension to ISO/ANSI SQL grammar.
  • SAP Sybase Database product—Supported by Open Client/Open Server.

Permissions

(back to top)

None