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

SPI_getargcount

SPI_getargcount <refpurpose>return the number of arguments needed by a statement prepared by <function>SPI_prepare</function></refpurpose> SPI_prepareにより準備した文に必要とされる引数の数を返す

概要

int SPI_getargcount(SPIPlanPtr plan)

説明

<title>Description</title>

<function>SPI_getargcount</function> returns the number of arguments needed to execute a statement prepared by <function>SPI_prepare</function>. SPI_getargcountは、SPI_prepareにより準備された文を実行する時に必要とされる引数の数を返します。

引数

<title>Arguments</title>
SPIPlanPtr plan

prepared statement (returned by <function>SPI_prepare</function>) SPI_prepareで返される)準備済み文

戻り値

<title>Return Value</title>

The count of expected arguments for the <parameter>plan</parameter>. If the <parameter>plan</parameter> is <symbol>NULL</symbol> or invalid, <varname>SPI_result</varname> is set to <symbol>SPI_ERROR_ARGUMENT</symbol> and -1 is returned. planで想定される引数の数です。 planNULLまたは無効な場合はSPI_resultSPI_ERROR_ARGUMENTが設定され、-1が返されます。