Searched refs:pg_send_query_params (Results 1 – 6 of 6) sorted by relevance
/php-src/ext/pgsql/tests/ |
H A D | gh13354.phpt | 2 GH-13354 (null-by-reference handling in pg_execute, pg_send_query_params, pg_send_execute) 42 // method 3, pg_send_query_params 43 $res = pg_send_query_params($db, $query, $params_null); 46 echo "pg_send_query_params, null value: " . pg_fetch_result($res, 0, 0) . "\n"; 49 $res = pg_send_query_params($db, $query, $params_null_by_ref); 52 echo "pg_send_query_params, null value by reference: " . pg_fetch_result($res, 0, 0) . "\n"; 77 pg_send_query_params, null value: t 78 pg_send_query_params, null value by reference: t
|
H A D | 25async_query_params.phpt | 19 if (!pg_send_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))) { 20 echo "pg_send_query_params() error\n"; 59 if (!pg_send_query_params($db, "INSERT INTO ".$table_name." VALUES (\$1, \$2);", array(9999, "A'BC"… 61 echo "pg_send_query_params() error\n";
|
H A D | 30nb_async_query_params.phpt | 23 $sent = pg_send_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)); 25 echo "pg_send_query_params() error\n"; 60 $sent = pg_send_query_params($db, "INSERT INTO ".$table_name." VALUES (\$1, \$2);", array(9999, "A'… 63 echo "pg_send_query_params() error\n";
|
/php-src/ext/pgsql/ |
H A D | pgsql.stub.php | 897 …function pg_send_query_params(PgSql\Connection $connection, string $query, array $params): int|boo… function
|
H A D | pgsql_arginfo.h | 581 ZEND_FUNCTION(pg_send_query_params); 712 ZEND_FE(pg_send_query_params, arginfo_pg_send_query_params)
|
H A D | pgsql.c | 3963 PHP_FUNCTION(pg_send_query_params) in PHP_FUNCTION() argument
|
Completed in 27 milliseconds