VAR <refpurpose>define a variable</refpurpose> — 変数を定義します。
VARvarname
ISctype
The <command>VAR</command> command assigns a new C data type
to a host variable. The host variable must be previously
declared in a declare section.
VAR
コマンドは新しいCデータ型にホスト変数を割り当てます。
ホスト変数は宣言セクションで前もって宣言されていなければなりません。
Exec sql begin declare section; short a; exec sql end declare section; EXEC SQL VAR a IS int;
The <command>VAR</command> command is a PostgreSQL extension.
VAR
コマンドはPostgreSQLの拡張です。