summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/pg_update.inc
blob: 8fc8bb168b8f20756c75393a2fab1cf0fa69f225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
error_reporting(E_ALL);

include 'config.inc';

$db = pg_connect($conn_str);
$fields = array('num'=>'1234', 'str'=>'ABC', 'bin'=>'XYZ');
$ids = array('num'=>'1234');

pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n";
echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";

echo "Ok\n";

?>