php-src/ext/pdo_sqlite/tests/pdo_008.phpt

31 lines
407 B
Plaintext
Raw Normal View History

2005-02-19 23:58:03 +00:00
--TEST--
PDO_SQLite: PDO_FETCH_UNIQUE conflict
2005-02-19 23:58:03 +00:00
--SKIPIF--
<?php # vim:ft=php
2005-02-20 17:56:19 +00:00
require_once('skipif.inc'); ?>
2005-02-19 23:58:03 +00:00
--FILE--
<?php
2005-02-20 17:56:19 +00:00
require_once('connection.inc');
require_once('prepare.inc');
2005-02-19 23:58:03 +00:00
2005-02-20 17:56:19 +00:00
require_once($PDO_TESTS . 'pdo_008.inc');
2005-02-19 23:58:03 +00:00
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
array(2) {
["A"]=>
array(1) {
[0]=>
string(1) "B"
}
["C"]=>
array(1) {
[0]=>
string(1) "C"
}
}
===DONE===