|
|
DECLARE SECTION
Identifies declaration of host variables used in SQL statements.
Usage
Description
Host variables declared between the BEGIN DECLARE SECTION and END DECLARE SECTION statements are declared for both the host language compiler and the SQL compiler. Host variables used in SQL statements must be declared in an SQL DECLARE SECTION.
Restrictions
Notes
Host variables declared in the SQL DECLARE SECTION must be elementary data items or pointers to character strings. They may not be declared as part of a record or structure.
The rules for placing the DECLARE SECTION in the host program code and for declaring variables within the SECTION follow the host language syntax.
Language-specific issues are considered in the Mimer SQL Programmer's Manual.
SQL statements may not be placed within the SQL DECLARE SECTION.
Note: BEGIN DECLARE SECTION and END DECLARE SECTION are two separate SQL statements, each of which must be preceded by EXEC SQL and followed by the (language-specific) statement terminator.
The following example in C shows the correct usage of both statements:
exec sql BEGIN DECLARE SECTION; char usernm[129]; char passwd[19]; exec sql END DECLARE SECTION;Standard Compliance
Standard
Compliance
Comments
X/Open-95
SQL92 YES Fully compliant.
|
Upright Database Technology AB Voice: +46 18 780 92 00 Fax: +46 18 780 92 40 dbtechnology@upright.se |
|
|