END DECLARE SECTION

Embedded SQL for C and SQL Server

Embedded SQL for C and SQL Server

END DECLARE SECTION

The END DECLARE SECTION statement marks the end of a declaration section for host variables.

Syntax

END DECLARE SECTION

Remarks

The END DECLARE SECTION statement must be preceded by a BEGIN DECLARE SECTION statement.

Examples
EXEC SQL BEGIN DECLARE SECTION;
int id;
char name[30];
EXEC SQL END DECLARE SECTION;

See Also

BEGIN DECLARE SECTION