Searched refs:pg_query_params (Results 1 – 13 of 13) sorted by relevance
/PHP-8.1/ext/pgsql/tests/ |
H A D | 23sync_query_params.phpt | 8 if (!function_exists('pg_query_params')) die('skip function pg_query_params() does not exist'); 19 $result = pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)); 42 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 43 … pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 51 …$result = pg_query_params($db, "INSERT INTO ".$table_name." VALUES (\$1, \$2);", array(9999, "A'BC…
|
H A D | bug72028.phpt | 2 Bug #72028 pg_query_params(): NULL converts to empty string 22 $result = pg_query_params($conn, $sql, $params); 30 $result = pg_query_params($conn, $sql, $params2);
|
H A D | bug46408.phpt | 2 Bug #46408 (Locale number format settings can cause pg_query_params to break with numerics) 20 pg_query_params($dbh, "SELECT $1::numeric", array(3.5));
|
H A D | bug81720.phpt | 2 Bug #81720 (Uninitialized array in pg_query_params() leading to RCE) 14 pg_query_params($conn, 'SELECT $1, $2', [1, new stdClass()]);
|
H A D | 25async_query_params.phpt | 50 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 51 … pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 30nb_async_query_params.phpt | 55 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 56 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 26async_query_prepared.phpt | 64 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 65 … pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 31nb_async_query_prepared.phpt | 70 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 71 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | deprecated_implicit_default_link.phpt | 18 pg_query_params('str', []); 87 Deprecated: pg_query_params(): Automatic fetching of PostgreSQL connection is deprecated in %s on l…
|
/PHP-8.1/ext/pgsql/ |
H A D | pgsql_arginfo.h | 467 ZEND_FUNCTION(pg_query_params); 561 ZEND_FE(pg_query_params, arginfo_pg_query_params)
|
H A D | pgsql.stub.php | 97 function pg_query_params($connection, $query, array $params = UNKNOWN): PgSql\Result|false {} function
|
H A D | pgsql.c | 1150 PHP_FUNCTION(pg_query_params) in PHP_FUNCTION() argument
|
/PHP-8.1/ |
H A D | NEWS | 1298 . Fixed bug #81720: Uninitialized array in pg_query_params().
|
Completed in 27 milliseconds