Searched refs:pg_query_params (Results 1 – 13 of 13) sorted by relevance
/PHP-8.0/ext/pgsql/tests/ |
H A D | 23sync_query_params.phpt | 6 if (!function_exists('pg_query_params')) die('skip function pg_query_params() does not exist'); 17 $result = pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)); 40 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 41 … pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 49 …$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 20 $result = pg_query_params($conn, $sql, $params); 28 $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) 18 pg_query_params("SELECT $1::numeric", array(3.5));
|
H A D | bug81720.phpt | 2 Bug #81720 (Uninitialized array in pg_query_params() leading to RCE) 12 pg_query_params($conn, 'SELECT $1, $2', [1, new stdClass()]);
|
H A D | 25async_query_params.phpt | 48 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 49 … pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 30nb_async_query_params.phpt | 53 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 54 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 26async_query_prepared.phpt | 62 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 63 … pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 31nb_async_query_prepared.phpt | 68 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 69 pg_num_fields(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
/PHP-8.0/ext/pgsql/ |
H A D | php_pgsql.h | 79 PHP_FUNCTION(pg_query_params);
|
H A D | pgsql_arginfo.h | 465 ZEND_FUNCTION(pg_query_params); 559 ZEND_FE(pg_query_params, arginfo_pg_query_params)
|
H A D | pgsql.stub.php | 69 function pg_query_params($connection, $query, array $params = UNKNOWN) {} function
|
H A D | pgsql.c | 1068 PHP_FUNCTION(pg_query_params) in PHP_FUNCTION() argument
|
/PHP-8.0/ |
H A D | NEWS | 290 . Fixed bug #81720: Uninitialized array in pg_query_params().
|
Completed in 31 milliseconds