summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/statement_cache.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/statement_cache.phpt')
-rw-r--r--ext/oci8/tests/statement_cache.phpt35
1 files changed, 0 insertions, 35 deletions
diff --git a/ext/oci8/tests/statement_cache.phpt b/ext/oci8/tests/statement_cache.phpt
deleted file mode 100644
index e7c8911e88..0000000000
--- a/ext/oci8/tests/statement_cache.phpt
+++ /dev/null
@@ -1,35 +0,0 @@
---TEST--
-statement cache
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__)."/connect.inc";
-
-$pc = oci_pconnect($user, $password, $dbase);
-
-$stmt = oci_parse($pc, "select 1+3 from dual", true);
-oci_execute($stmt);
-var_dump(oci_fetch_array($stmt));
-
-$stmt = oci_parse($pc, "select 1+3 from dual", true);
-oci_execute($stmt);
-var_dump(oci_fetch_array($stmt));
-
-echo "Done\n";
-?>
---EXPECTF--
-array(2) {
- [0]=>
- string(1) "4"
- ["1+3"]=>
- string(1) "4"
-}
-array(2) {
- [0]=>
- string(1) "4"
- ["1+3"]=>
- string(1) "4"
-}
-Done