Searched refs:pg_select (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/ext/pgsql/tests/ |
H A D | 13pg_select_9.phpt | 2 PostgreSQL pg_select() (9.0+) 22 $res = pg_select($db, $table_name, $ids) or print "Error\n"; 24 echo pg_select($db, $table_name, $ids, PGSQL_DML_STRING)."\n"; 25 echo pg_select($db, $table_name, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n"; 29 $converted = pg_select($db, $table_name, [5 => 'AAA']); 34 $converted = pg_select($db, $table_name, ['AAA']); 39 $converted = pg_select($db, $table_name, ['num' => []]); 44 $converted = pg_select($db, $table_name, ['num' => new stdClass()]); 49 $converted = pg_select($db, $table_name, ['num' => $db]);
|
H A D | pg_select_001.phpt | 2 PostgreSQL pg_select() - basic test using schema 25 var_dump(pg_select($conn, 'foo', array('id' => 1))); 28 var_dump(pg_select($conn, 'phptests.foo', array('id' => 1))); 31 var_dump(pg_select($conn, 'phptests.bar', array('id' => 1))); 34 var_dump(pg_select($conn, 'phptests.bar', array('id4' => 4))); 37 var_dump(pg_select($conn, 'phptests.bar', array('id4' => 4), 0, PGSQL_NUM)); 45 Warning: pg_select(): Table 'foo' doesn't exists in %s on line %d 57 Notice: pg_select(): Invalid field name (id) in values in %s on line %d
|
H A D | 13pg_select.phpt | 2 PostgreSQL pg_select() 20 $res = pg_select($db, $table_name, $ids) or print "Error\n"; 22 echo pg_select($db, $table_name, $ids, PGSQL_DML_STRING)."\n";
|
H A D | pg_insert_001.phpt | 2 PostgreSQL pg_select() - basic test using schema 24 var_dump(pg_select($conn, 'phptests.foo', array('id' => 1)));
|
/PHP-8.3/ext/pgsql/ |
H A D | pgsql_arginfo.h | 553 ZEND_FUNCTION(pg_select); 673 ZEND_FE(pg_select, arginfo_pg_select)
|
H A D | pgsql.stub.php | 941 …function pg_select(PgSql\Connection $connection, string $table_name, array $conditions, int $flags… function
|
H A D | pgsql.c | 5835 PHP_FUNCTION(pg_select) in PHP_FUNCTION() argument
|
Completed in 28 milliseconds