END DECLARE SECTION (E-SQL)

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

  


(c) 1988-98 Microsoft Corporation. All Rights Reserved.