helly Thu May 11 22:17:43 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/pdo/tests bug_36428.phpt Log: - MFH: add new test
http://cvs.php.net/viewcvs.cgi/php-src/ext/pdo/tests/bug_36428.phpt?view=markup&rev=1.1 Index: php-src/ext/pdo/tests/bug_36428.phpt +++ php-src/ext/pdo/tests/bug_36428.phpt --TEST-- PDO Common: PHP Bug #36428: Incorrect error message for PDO::fetchAll --SKIPIF-- <?php # vim:ft=php if (!extension_loaded('pdo')) die('skip'); if (!extension_loaded('simplexml')) die('skip SimpleXML not loaded'); $dir = getenv('REDIR_TEST_DIR'); if (false == $dir) die('skip no driver'); require_once $dir . 'pdo_test.inc'; PDOTest::skip(); ?> --FILE-- <?php if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.dirname(__FILE__) . '/../../pdo/tests/'); require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc'; $db = PDOTest::factory(); $db->exec("CREATE TABLE test (a VARCHAR(10))"); $db->exec("INSERT INTO test (a) VALUES ('xyz')"); $res = $db->query("SELECT a FROM test"); var_dump($res->fetchAll(PDO::FETCH_CLASS|PDO::FETCH_PROPSLATE, 'SimpleXMLElement', array('<root/>'))); ?> ===DONE=== --EXPECTF-- array(1) { [0]=> object(SimpleXMLElement)#%d (1) { ["a"]=> string(3) "xyz" } } ===DONE=== -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php