1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/pdo_pgsql/tests/pdo_pgsql_002.phpt
Marcus Boerger 5a48f0ec38 - Add tests
2005-02-20 19:26:05 +00:00

42 lines
505 B
PHP
Executable File

--TEST--
PDO-PGSQL: PDO_FETCH_NUM
--SKIPIF--
<?php # vim:ft=php
require_once('skipif.inc'); ?>
--FILE--
<?php
require_once('connection.inc');
require_once('prepare.inc');
require_once($PDO_TESTS . 'pdo_002.inc');
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
array(3) {
[0]=>
array(2) {
[0]=>
int(1)
[1]=>
string(1) "A"
}
[1]=>
array(2) {
[0]=>
int(2)
[1]=>
string(1) "B"
}
[2]=>
array(2) {
[0]=>
int(3)
[1]=>
string(1) "C"
}
}
===DONE===