Searched refs:pg_send_execute (Results 1 – 7 of 7) 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) 56 // method 4, pg_send_prepare, pg_send_execute 57 pg_send_execute($db, 'test', $params_null); 60 echo "pg_send_execute, null value: " . pg_fetch_result($res, 0, 0) . "\n"; 63 pg_send_execute($db, 'test', $params_null_by_ref); 66 echo "pg_send_execute, null value by reference: " . pg_fetch_result($res, 0, 0) . "\n"; 79 pg_send_execute, null value: t 80 pg_send_execute, null value by reference: t
|
H A D | 26async_query_prepared.phpt | 32 if (!pg_send_execute($db, 'php_test', array(100))) { 33 echo "pg_send_execute() error\n"; 87 if (!pg_send_execute($db, "php_test2", array(9999, "A'BC"))) 89 echo "pg_send_execute() error\n";
|
H A D | 31nb_async_query_prepared.phpt | 37 $nb_send = pg_send_execute($db, 'php_test', array(100)); 39 echo "pg_send_execute() error\n"; 89 $nb_send = pg_send_execute($db, "php_test2", array(9999, "A'BC")); 91 echo "pg_send_execute() error\n";
|
H A D | bug81720.phpt | 22 pg_send_execute($conn, "my_query", [1, new stdClass()]);
|
/php-src/ext/pgsql/ |
H A D | pgsql.stub.php | 901 …function pg_send_execute(PgSql\Connection $connection, string $statement_name, array $params): int… function
|
H A D | pgsql_arginfo.h | 583 ZEND_FUNCTION(pg_send_execute); 714 ZEND_FE(pg_send_execute, arginfo_pg_send_execute)
|
H A D | pgsql.c | 4133 PHP_FUNCTION(pg_send_execute) in PHP_FUNCTION() argument
|
Completed in 34 milliseconds