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

SPI_fname

SPI_fname <refpurpose>determine the column name for the specified column number</refpurpose> — 指定した列番号に対する列名を決定する

概要

char * SPI_fname(TupleDesc rowdesc, int colnumber)

説明

<title>Description</title>

<function>SPI_fname</function> returns a copy of the column name of the specified column. (You can use <function>pfree</function> to release the copy of the name when you don't need it anymore.) SPI_fname は指定した列の列名のコピーを返します (名前のコピーが不要になった場合pfreeを使用してその領域を解放することができます)。

引数

<title>Arguments</title>
TupleDesc rowdesc

input row description 入力行の記述

int colnumber

column number (count starts at 1) (1から始まる)列番号

戻り値

<title>Return Value</title>

The column name; <symbol>NULL</symbol> if <parameter>colnumber</parameter> is out of range. <varname>SPI_result</varname> set to <symbol>SPI_ERROR_NOATTRIBUTE</symbol> on error. 列の名前です。 colnumberが範囲外の場合はNULLです。 エラー時、SPI_resultSPI_ERROR_NOATTRIBUTEに設定されます。