Searched refs:pg_select (Results 1 – 7 of 7) sorted by relevance
/php-src/ext/pgsql/tests/ |
H A D | pg_select_001.phpt | 2 PostgreSQL pg_select() - basic test using schema 26 var_dump(pg_select($conn, 'foo', array('id' => 1))); 29 var_dump(pg_select($conn, "{$schema_name}.foo", array('id' => 1))); 32 var_dump(pg_select($conn, "{$schema_name}.bar", array('id' => 1))); 35 var_dump(pg_select($conn, "{$schema_name}.bar", array('id4' => 4))); 38 var_dump(pg_select($conn, "{$schema_name}.bar", array('id4' => 4), 0, PGSQL_NUM)); 41 var_dump(pg_select($conn, "{$schema_name}.bar", array())); 44 var_dump(pg_select($conn, "{$schema_name}.bar")); 59 Warning: pg_select(): Table 'foo' doesn't exists in %s on line %d 71 Notice: pg_select(): Invalid field name (id) in values in %s on line %d
|
H A D | 13pg_select_9.phpt | 2 PostgreSQL pg_select() (9.0+) 26 $res = pg_select($db, $table_name, $ids) or print "Error\n"; 28 echo pg_select($db, $table_name, $ids, PGSQL_DML_STRING)."\n"; 29 echo pg_select($db, $table_name, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n"; 33 $converted = pg_select($db, $table_name, [5 => 'AAA']); 38 $converted = pg_select($db, $table_name, ['AAA']); 43 $converted = pg_select($db, $table_name, ['num' => []]); 48 $converted = pg_select($db, $table_name, ['num' => new stdClass()]); 53 $converted = pg_select($db, $table_name, ['num' => $db]);
|
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 26 var_dump(pg_select($conn, "{$schema_name}.{$table_name}", array('id' => 1)));
|
/php-src/ext/pgsql/ |
H A D | pgsql.stub.php | 952 …function pg_select(PgSql\Connection $connection, string $table_name, array $conditions = [], int $… function
|
H A D | pgsql_arginfo.h | 596 ZEND_FUNCTION(pg_select); 727 ZEND_FE(pg_select, arginfo_pg_select)
|
H A D | pgsql.c | 6106 PHP_FUNCTION(pg_select) in PHP_FUNCTION() argument
|
Completed in 30 milliseconds