xref: /PHP-5.3/ext/pgsql/tests/14pg_update_85.phpt (revision 79803beb)
1--TEST--
2PostgreSQL pg_update() (8.5+)
3--SKIPIF--
4<?php
5include("skipif.inc");
6skip_server_version('8.5dev', '<');
7?>
8--FILE--
9<?php
10error_reporting(E_ALL);
11
12include 'config.inc';
13
14$db = pg_connect($conn_str);
15pg_query($db, "SET standard_conforming_strings = 0");
16
17$fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
18$ids = array('num'=>'1234');
19
20pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n";
21echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";
22
23echo "Ok\n";
24?>
25--EXPECT--
26UPDATE php_pgsql_test SET num=1234,str='ABC',bin='\\x58595a' WHERE num=1234;
27Ok
28