Searched refs:pg_query_params (Results 1 – 13 of 13) sorted by relevance
/php-src/ext/pgsql/tests/ |
H A D | gh13354.phpt | 32 // method 2, pg_query_params 33 $res = pg_query_params($db, $query, $params_null); 34 echo "pg_query_params, null value: " . pg_fetch_result($res, 0, 0) . "\n"; 37 $res = pg_query_params($db, $query, $params_null_by_ref); 38 echo "pg_query_params, null value by reference: " . pg_fetch_result($res, 0, 0) . "\n"; 75 pg_query_params, null value: t 76 pg_query_params, null value by reference: t
|
H A D | 23sync_query_params.phpt | 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 | 51 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 52 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 | 66 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100))); 67 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-src/ext/pgsql/ |
H A D | pgsql.stub.php | 536 function pg_query_params($connection, $query, array $params = UNKNOWN): PgSql\Result|false {} function
|
H A D | pgsql_arginfo.h | 520 ZEND_FUNCTION(pg_query_params); 630 ZEND_FE(pg_query_params, arginfo_pg_query_params)
|
H A D | pgsql.c | 1214 PHP_FUNCTION(pg_query_params) in PHP_FUNCTION() argument
|
Completed in 44 milliseconds