]> begriffs open source - ai-pg/blob - full-docs/txt/ecpg-sql-var.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / ecpg-sql-var.txt
1
2 VAR
3
4    VAR — define a variable
5
6 Synopsis
7
8 VAR varname IS ctype
9
10 Description
11
12    The VAR command assigns a new C data type to a host variable. The host
13    variable must be previously declared in a declare section.
14
15 Parameters
16
17    varname #
18           A C variable name.
19
20    ctype #
21           A C type specification.
22
23 Examples
24
25 Exec sql begin declare section;
26 short a;
27 exec sql end declare section;
28 EXEC SQL VAR a IS int;
29
30 Compatibility
31
32    The VAR command is a PostgreSQL extension.