php-src/ext/pgsql/tests/14pg_update.phpt
Yasuo Ohgaki e7e0eddadd Make pg_convert/pg_insert/pg_select/pg_update/pg_delete a bit more flexible.
pg_convert() may ignore, NOT NULL and/or DEFAULT.
pg_insert/pg_update/pg_select/pg_update may return query string.
2002-04-23 03:42:26 +00:00

12 lines
204 B
PHP

--TEST--
PostgreSQL pg_update()
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
include("pg_update.inc");
?>
--EXPECT--
UPDATE php_pgsql_test SET num=1234,str='ABC',bin='XYZ' WHERE num=1234;
Ok