Home
last modified time | relevance | path

Searched refs:pg_update (Results 1 – 10 of 10) sorted by relevance

/PHP-5.5/ext/pgsql/tests/
H A Dbug68638.phpt2 Bug #68638 pg_update() fails to store infinite values
20 var_dump(pg_update($conn,$table, array('value' => 'inf'), array('id' => 1), PGSQL_DML_STRING));
22 pg_update($conn,$table, array('value' => 'inf'), array('id' => 1));
23 pg_update($conn,$table, array('value' => '-inf'), array('id' => 2));
24 pg_update($conn,$table, array('value' => '+inf'), array('id' => 3));
H A Dpg_update_001.phpt2 PostgreSQL pg_update() - basic test using schema
21 pg_update($conn, 'foo', array('id' => 10), array('id' => 1));
22 var_dump(pg_update($conn, 'foo', array('id' => 10), array('id' => 1), PGSQL_DML_STRING));
24 pg_update($conn, 'phptests.foo', array('id' => 100), array('id2' => 2));
25 var_dump(pg_update($conn, 'phptests.foo', array('id' => 100), array('id2' => 2), PGSQL_DML_STRING));
H A D14pg_update.phpt2 PostgreSQL pg_update()
18 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n";
19 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";
H A D14pg_update_9.phpt2 PostgreSQL pg_update() (9.0)
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";
H A D80_bug39971.phpt2 Bug #39971 (pg_insert/pg_update do not allow now() to be used for timestamp fields)
23 pg_update($dbh, 'php_test', $values, $ids);
H A Dbug47199.phpt26 $query = pg_update($dbh, $tbl_name, array('null_field' => NULL, 'not_null_field' => 0), array('not_…
/PHP-5.5/ext/pgsql/
H A Dphp_pgsql.h183 PHP_FUNCTION(pg_update);
H A DREADME207 bool pg_update(resource db, string table, array fields, array ids[, bool convert[, bool async]])
H A Dpgsql.c686 PHP_FE(pg_update, arginfo_pg_update)
6437 PHP_FUNCTION(pg_update) argument
/PHP-5.5/
H A DNEWS596 . Fixed bug #68638 (pg_update() fails to store infinite values).
1331 for pg_insert()/pg_update()/pg_delete()/pg_select(). (Yasuo)
1682 . Fixed bug #62978 (Disallow possible SQL injections with pg_select()/pg_update()
7886 - Fixed bug #39971 (pg_insert/pg_update do not allow now() to be used

Completed in 52 milliseconds