PHP 8.4.24 Released!

ibase_prepare

(PHP 5, PHP 7 < 7.4.0)

ibase_preparePrepare a query for later binding of parameter placeholders and execution

Опис

function ibase_prepare(string $query): resource
function ibase_prepare(resource $link_identifier, string $query): resource
function 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.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top