ALLOCATE DESCRIPTOR <refpurpose>allocate an SQL descriptor area</refpurpose> — SQL記述子領域を割り当てます。
ALLOCATE DESCRIPTOR name
<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
コマンドを使用して解放しなければなりません。
name
#A name of SQL descriptor, case sensitive. This can be an SQL identifier or a host variable. SQL記述子の名前です。 大文字小文字を区別します。 これはSQL識別子またはホスト変数になることができます。
EXEC SQL ALLOCATE DESCRIPTOR mydesc;
<command>ALLOCATE DESCRIPTOR</command> is specified in the SQL
standard.
ALLOCATE DESCRIPTOR
は標準SQLで規定されています。