This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for the
current
version, or one of the other supported versions listed above instead.
VAR
Name
VAR -- define a variable
Synopsis
VAR varname IS ctype
Description
The VAR command assigns a new C data
type to a host variable. The host variable must be previously
declared in a declare section.
Parameters
- varname
-
A C variable name.
- ctype
-
A C type specification.
Examples
Exec sql begin declare section;
short a;
exec sql end declare section;
EXEC SQL VAR a IS int;
Compatibility
The VAR command is a PostgreSQL
extension.