php-src/ext/pgsql/tests/result.inc
2002-04-25 07:52:01 +00:00

21 lines
377 B
PHP

<?php
error_reporting(E_ALL);
include 'config.inc';
$db = pg_connect($conn_str);
$sql = "SELECT * FROM $table_name";
$result = pg_query($db, $sql) or die('Cannot qeury db');
$rows = pg_num_rows($result);
$rec = pg_fetch_object($result, 1);
var_dump($rec);
$rec = pg_fetch_array($result, 1);
var_dump($rec);
$rec = pg_fetch_row($result, 1);
var_dump($rec);
echo "Ok\n";
?>