update : 2015.11.03
php.shukuma.com검색:
|
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
)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실패 시 예제
Example #1 Using pg_execute()
<?php 참고
|