summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/pdo_028.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo/tests/pdo_028.phpt')
-rw-r--r--ext/pdo/tests/pdo_028.phpt44
1 files changed, 0 insertions, 44 deletions
diff --git a/ext/pdo/tests/pdo_028.phpt b/ext/pdo/tests/pdo_028.phpt
deleted file mode 100644
index 341917605f..0000000000
--- a/ext/pdo/tests/pdo_028.phpt
+++ /dev/null
@@ -1,44 +0,0 @@
---TEST--
-PDO Common: bindValue
---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, val1 VARCHAR(10), val2 VARCHAR(10), val3 VARCHAR(10))');
-$stmt = $db->prepare('INSERT INTO test values (1, ?, ?, ?)');
-
-$data = array("one", "two", "three");
-
-foreach ($data as $i => $v) {
- $stmt->bindValue($i+1, $v);
-}
-$stmt->execute();
-
-$stmt = $db->prepare('SELECT * from test');
-$stmt->execute();
-
-var_dump($stmt->fetchAll(PDO_FETCH_ASSOC));
-?>
---EXPECT--
-array(1) {
- [0]=>
- array(4) {
- ["id"]=>
- string(1) "1"
- ["val1"]=>
- string(3) "one"
- ["val2"]=>
- string(3) "two"
- ["val3"]=>
- string(5) "three"
- }
-}