Php/docs/function.ibase-prepare

提供:Dev Guides
< Php
2020年12月14日 (月) 12:48時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

ibase_prepare

(PHP 5, PHP 7 < 7.4.0)

ibase_preparePrepare a query for later binding of parameter placeholders and execution


説明

ibase_prepare ( string $query ) : resource

ibase_prepare ( resource $link_identifier , string $query ) : resource

ibase_prepare ( resource $link_identifier , string $trans , string $query ) : resource

Prepare a query for later binding of parameter placeholders and execution (via ibase_execute()).


パラメータ

query
An InterBase query.
link_identifier
An InterBase link identifier returned from ibase_connect(). If omitted, the last opened link is assumed.
trans
An InterBase transaction handle the query should be associated with. If omitted, the default transaction of the connection is assumed.


返り値

Returns a prepared query handle, or false on error.