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

ALLOCATE DESCRIPTOR

ALLOCATE DESCRIPTOR <refpurpose>allocate an SQL descriptor area</refpurpose> — SQL記述子領域を割り当てます。

概要

ALLOCATE DESCRIPTOR name

説明

<title>Description</title>

<command>ALLOCATE DESCRIPTOR</command> allocates a new named SQL descriptor area, which can be used to exchange data between the PostgreSQL server and the host program. ALLOCATE DESCRIPTORは、PostgreSQLサーバとホストプログラムとの間のデータ交換のために使用することができる、新しい名前付きSQL記述子領域を割り当てます。

Descriptor areas should be freed after use using the <command>DEALLOCATE DESCRIPTOR</command> command. 記述子領域は、使用した後でDEALLOCATE DESCRIPTORコマンドを使用して解放しなければなりません。

パラメータ

<title>Parameters</title>
name #

A name of SQL descriptor, case sensitive. This can be an SQL identifier or a host variable. SQL記述子の名前です。 大文字小文字を区別します。 これはSQL識別子またはホスト変数になることができます。

<title>Examples</title>
EXEC SQL ALLOCATE DESCRIPTOR mydesc;

互換性

<title>Compatibility</title>

<command>ALLOCATE DESCRIPTOR</command> is specified in the SQL standard. ALLOCATE DESCRIPTORは標準SQLで規定されています。

関連項目

<title>See Also</title> DEALLOCATE DESCRIPTOR, GET DESCRIPTOR, SET DESCRIPTOR