バージョンごとのドキュメント一覧

VAR

VAR <refpurpose>define a variable</refpurpose> — 変数を定義します。

概要

VAR varname IS ctype

説明

<title>Description</title>

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データ型にホスト変数を割り当てます。 ホスト変数は宣言セクションで前もって宣言されていなければなりません。

パラメータ

<title>Parameters</title>
varname #

A C variable name. Cの変数名です。

ctype #

A C type specification. Cの型指定です。

<title>Examples</title>
Exec sql begin declare section;
short a;
exec sql end declare section;
EXEC SQL VAR a IS int;

互換性

<title>Compatibility</title>

The <command>VAR</command> command is a PostgreSQL extension. VARコマンドはPostgreSQLの拡張です。