|
PHP5中文手册
pg_execute(PHP 5 >= 5.1.0) pg_execute — Sends a request to execute a prepared statement with given parameters, and waits for the result. 说明
resource pg_execute
( resource $connection
, string $stmtname
, array $params
)
resource pg_execute
( string $stmtname
, array $params
)
Sends a request to execute a prepared statement with given parameters, and waits for the result. pg_execute() is like pg_query_params(), but the command to be executed is specified by naming a previously-prepared statement, instead of giving a query string. This feature allows commands that will be used repeatedly to be parsed and planned just once, rather than each time they are executed. The statement must have been prepared previously in the current session. pg_execute() is supported only against PostgreSQL 7.4 or higher connections; it will fail when using earlier versions. The parameters are identical to pg_query_params(), except that the name of a prepared statement is given instead of a query string. 参数
返回值A query result resource on success, or FALSE on failure. 范例
Example#1 Using pg_execute()
<?php |