Added test for pg_fetch_*() functions

This commit is contained in:
Yasuo Ohgaki 2002-04-25 07:52:01 +00:00
parent b4c943ee7b
commit c5b4a507fe
2 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,40 @@
--TEST--
PostgreSQL pg_fetch_*() functions
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
include("result.inc");
?>
--EXPECT--
object(stdClass)(3) {
["num"]=>
string(1) "1"
["str"]=>
string(3) "ABC"
["bin"]=>
NULL
}
array(6) {
[0]=>
string(1) "1"
["num"]=>
string(1) "1"
[1]=>
string(3) "ABC"
["str"]=>
string(3) "ABC"
[2]=>
NULL
["bin"]=>
NULL
}
array(3) {
[0]=>
string(1) "1"
[1]=>
string(3) "ABC"
[2]=>
NULL
}
Ok

View File

@ -0,0 +1,21 @@
<?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";
?>