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

SPI_finish

SPI_finish <refpurpose>disconnect a C function from the SPI manager</refpurpose> — C関数をSPIマネージャから切断する

概要

int SPI_finish(void)

説明

<title>Description</title>

<function>SPI_finish</function> closes an existing connection to the SPI manager. You must call this function after completing the SPI operations needed during your C function's current invocation. You do not need to worry about making this happen, however, if you abort the transaction via <literal>elog(ERROR)</literal>. In that case SPI will clean itself up automatically. SPI_finishは既存のSPIマネージャへの接続を切断します。 C関数の現在の呼び出し期間内で必要なSPI操作が完了した後この関数を呼び出さなければなりません。 しかし、elog(ERROR)経由でトランザクションを中断させる場合は、この関数が何を行うかを気にする必要はありません。 その場合、SPIは自動的に自身を整理します。

戻り値

<title>Return Value</title>
SPI_OK_FINISH

if properly disconnected 適切に切断された場合。

SPI_ERROR_UNCONNECTED

if called from an unconnected C function 未接続のC関数から呼び出された場合