update : 2015.11.03
php.shukuma.com검색:
|
pg_send_execute(PHP 5 >= 5.1.0) pg_send_execute — Sends a request to execute a prepared statement with given parameters, without waiting for the result(s). 설명
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. 인수
반환값Returns 예제
Example #1 Using pg_send_execute()
<?php 참고
|