VAR
VAR — define a variable
Synopsis
VARvarnameISctype
Description
TheVAR command assigns a new C data type to a host variable. The host variable must be previously declared in a declare section.
Examples
Exec sql begin declare section;short a;exec sql end declare section;EXEC SQL VAR a IS int;
Compatibility
TheVAR command is a Postgres Pro extension.