END DECLARE SECTION (Declare end of embedded SQL)

Function

The END DECLARE SECTION declares the end of an embedded SQL declare section.

Format

END DECLARE SECTION

Common rules

  1. The beginning of an embedded SQL declare section is denoted by specifying a BEGIN DECLARE SECTION (declaring the beginning of an embedded SQL).
  2. All embedded variables and indicator variables used in the SQL should be declared in the embedded SQL declare section.

Examples

See the section on the BEGIN DECLARE SECTION (Declare beginning of embedded SQL) for examples.