Searched refs:pg_update (Results 1 – 9 of 9) sorted by relevance
/php-src/ext/pgsql/tests/ |
H A D | 14pg_update.phpt | 2 PostgreSQL pg_update() 20 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n"; 21 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n"; 22 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n";
|
H A D | bug68638.phpt | 2 Bug #68638 pg_update() fails to store infinite values 22 var_dump(pg_update($conn,$table, array('value' => 'inf'), array('id' => 1), PGSQL_DML_STRING)); 24 pg_update($conn,$table, array('value' => 'inf'), array('id' => 1)); 25 pg_update($conn,$table, array('value' => '-inf'), array('id' => 2)); 26 pg_update($conn,$table, array('value' => '+inf'), array('id' => 3));
|
H A D | pg_update_001.phpt | 2 PostgreSQL pg_update() - basic test using schema 25 pg_update($conn, $table_name, array('id' => 10), array('id' => 1)); 26 var_dump(pg_update($conn, $table_name, array('id' => 10), array('id' => 1), PGSQL_DML_STRING)); 28 pg_update($conn, "{$schema_name}.{$table_name}", array('id' => 100), array('id2' => 2)); 29 var_dump(pg_update($conn, "{$schema_name}.{$table_name}", array('id' => 100), array('id2' => 2), PG…
|
H A D | 14pg_update_9.phpt | 2 PostgreSQL pg_update() (9.0+) 27 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n"; 28 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n"; 29 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n";
|
H A D | 80_bug39971.phpt | 2 Bug #39971 (8.0+) (pg_insert/pg_update do not allow now() to be used for timestamp fields) 23 pg_update($dbh, $table_name, $values, $ids);
|
H A D | bug47199.phpt | 27 $query = pg_update($dbh, $tbl_name, array('null_field' => NULL, 'not_null_field' => 0), array('not_…
|
/php-src/ext/pgsql/ |
H A D | pgsql.stub.php | 943 …function pg_update(PgSql\Connection $connection, string $table_name, array $values, array $conditi… function
|
H A D | pgsql_arginfo.h | 594 ZEND_FUNCTION(pg_update); 725 ZEND_FE(pg_update, arginfo_pg_update)
|
H A D | pgsql.c | 5854 PHP_FUNCTION(pg_update) in PHP_FUNCTION() argument
|
Completed in 40 milliseconds