summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/pdo_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo/tests/pdo_003.phpt')
-rw-r--r--ext/pdo/tests/pdo_003.phpt61
1 files changed, 0 insertions, 61 deletions
diff --git a/ext/pdo/tests/pdo_003.phpt b/ext/pdo/tests/pdo_003.phpt
deleted file mode 100644
index 255eb124cf..0000000000
--- a/ext/pdo/tests/pdo_003.phpt
+++ /dev/null
@@ -1,61 +0,0 @@
---TEST--
-PDO Common: PDO_FETCH_BOTH
---SKIPIF--
-<?php # vim:ft=php
-if (!extension_loaded('pdo')) die('skip');
-$dir = getenv('REDIR_TEST_DIR');
-if (false == $dir) die('skip no driver');
-require_once $dir . 'pdo_test.inc';
-PDOTest::skip();
-?>
---FILE--
-<?php
-require getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
-$db = PDOTest::factory();
-
-$db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
-$db->exec("INSERT INTO test VALUES(1, 'A')");
-$db->exec("INSERT INTO test VALUES(2, 'B')");
-$db->exec("INSERT INTO test VALUES(3, 'C')");
-
-$stmt = $db->prepare('SELECT * from test');
-$stmt->execute();
-
-var_dump($stmt->fetchAll(PDO_FETCH_BOTH));
-?>
---EXPECT--
-array(3) {
- [0]=>
- array(4) {
- ["id"]=>
- string(1) "1"
- [0]=>
- string(1) "1"
- ["val"]=>
- string(1) "A"
- [1]=>
- string(1) "A"
- }
- [1]=>
- array(4) {
- ["id"]=>
- string(1) "2"
- [0]=>
- string(1) "2"
- ["val"]=>
- string(1) "B"
- [1]=>
- string(1) "B"
- }
- [2]=>
- array(4) {
- ["id"]=>
- string(1) "3"
- [0]=>
- string(1) "3"
- ["val"]=>
- string(1) "C"
- [1]=>
- string(1) "C"
- }
-}