SPI_prepare_params <refpurpose>prepare a statement, without executing it yet</refpurpose> — 文を準備する。まだ実行は行わない
SPIPlanPtr SPI_prepare_params(const char *command
, ParserSetupHookparserSetup
, void *parserSetupArg
, intcursorOptions
)
<function>SPI_prepare_params</function> creates and returns a prepared
statement for the specified command, but doesn't execute the command.
This function is equivalent to <function>SPI_prepare_cursor</function>,
with the addition that the caller can specify parser hook functions
to control the parsing of external parameter references.
SPI_prepare_params
は指定したコマンドの準備済み文を作成し返します。
しかしそのコマンドを実行しません。
この関数はSPI_prepare_cursor
と同じですが、呼び出し元が外部パラメータ参照の解析を制御するパーサフック関数を指定できる点が追加されています。
This function is now deprecated in favor
of <function>SPI_prepare_extended</function>.
この関数はSPI_prepare_extended
のため現在では廃止予定です。
const char * command
command string コマンド文字列
ParserSetupHook parserSetup
Parser hook setup function パーサフック設定関数
void * parserSetupArg
pass-through argument for <parameter>parserSetup</parameter>
parserSetup
に渡される引数
int cursorOptions
integer bit mask of cursor options; zero produces default behavior カーソルオプションの整数ビットマスク。 ゼロはデフォルトの動作を引き起こします
<function>SPI_prepare_params</function> has the same return conventions as
<function>SPI_prepare</function>.
SPI_prepare_params
はSPI_prepare
と同じ戻り値の規則を持ちます。