summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/pg_result_status.inc
blob: 2c03e8966a503448a9121f1cf6bae713c2eb88ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
include 'config.inc';

$db = pg_connect($conn_str);

$sql = "SELECT * FROM ".$table_name." WHERE num = -2";
$result = pg_query($db, "BEGIN;END");

echo pg_result_status($result)."\n";
echo pg_result_status($result, PGSQL_STATUS_STRING)."\n";


?>