Searched refs:pg_num_rows (Results 1 – 16 of 16) sorted by relevance
/PHP-8.0/ext/pgsql/tests/ |
H A D | 04async_query.phpt | 24 if (!($rows = pg_num_rows($result))) { 25 echo "pg_num_rows() error\n"; 44 pg_num_rows(pg_query($db, "SELECT * FROM ".$table_name.";"));
|
H A D | 25async_query_params.phpt | 28 if (!($rows = pg_num_rows($result))) { 29 echo "pg_num_rows() error\n"; 48 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 30nb_async_query_params.phpt | 37 if (!($rows = pg_num_rows($result))) { 38 echo "pg_num_rows() error\n"; 53 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 32nb_async_query.phpt | 38 if (!($rows = pg_num_rows($result))) { 39 echo "pg_num_rows() error\n"; 54 pg_num_rows(pg_query($db, "SELECT * FROM ".$table_name.";"));
|
H A D | 01createdb.phpt | 12 if (!($q = @pg_query($db, "SELECT * FROM ".$table_name)) || !@pg_num_rows($q)) 24 …'], '9.2', '>=') && (!($q = @pg_query($db, "SELECT * FROM ".$table_name_92)) || !@pg_num_rows($q)))
|
H A D | 23sync_query_params.phpt | 18 if (!($rows = pg_num_rows($result))) 40 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 26async_query_prepared.phpt | 42 if (!($rows = pg_num_rows($result))) { 43 echo "pg_num_rows() error\n"; 62 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 31nb_async_query_prepared.phpt | 52 if (!($rows = pg_num_rows($result))) { 53 echo "pg_num_rows() error\n"; 68 pg_num_rows(pg_query_params($db, "SELECT * FROM ".$table_name." WHERE num > \$1;", array(100)));
|
H A D | 24sync_query_prepared.phpt | 21 if (!($rows = pg_num_rows($result))) 43 pg_num_rows(pg_execute($db, "php_test", array(100)));
|
H A D | 22pg_fetch_object.phpt | 21 $rows = pg_num_rows($result);
|
H A D | 17result.phpt | 15 $rows = pg_num_rows($result);
|
H A D | 03sync_query.phpt | 13 if (!($rows = pg_num_rows($result))) 81 pg_num_rows(pg_query($db, "SELECT * FROM ".$table_name.";"));
|
/PHP-8.0/ext/pgsql/ |
H A D | pgsql_arginfo.h | 468 ZEND_FUNCTION(pg_num_rows); 562 ZEND_FE(pg_num_rows, arginfo_pg_num_rows) 563 ZEND_DEP_FALIAS(pg_numrows, pg_num_rows, arginfo_pg_numrows)
|
H A D | php_pgsql.h | 101 PHP_FUNCTION(pg_num_rows);
|
H A D | pgsql.stub.php | 85 function pg_num_rows($result): int {} function
|
H A D | pgsql.c | 1406 PHP_FUNCTION(pg_num_rows) in PHP_FUNCTION() argument
|
Completed in 30 milliseconds