|
pg_send_executeSends a request to execute a prepared statement with given parameters, without waiting for the result(s). Description
bool pg_send_execute
( resource
$connection
, string $stmtname
, array $params
)Sends a request to execute a prepared statement with given parameters, without waiting for the result(s). This is similar to pg_send_query_params, but the command to be executed is specified by naming a previously-prepared statement, instead of giving a query string. The function's parameters are handled identically to pg_execute. Like pg_execute, it will not work on pre-7.4 versions of PostgreSQL. Parameters
Return ValuesReturns Examples
Example #1 Using pg_send_execute
<?php See Also
|