summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/fetch.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/fetch.phpt')
-rw-r--r--ext/oci8/tests/fetch.phpt56
1 files changed, 0 insertions, 56 deletions
diff --git a/ext/oci8/tests/fetch.phpt b/ext/oci8/tests/fetch.phpt
deleted file mode 100644
index 33cba657b6..0000000000
--- a/ext/oci8/tests/fetch.phpt
+++ /dev/null
@@ -1,56 +0,0 @@
---TEST--
-ocifetch() & ociresult()
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__)."/connect.inc";
-require dirname(__FILE__).'/create_table.inc';
-
-$insert_sql = "INSERT INTO ".$schema.$table_name." (id, value) VALUES (1,1)";
-
-if (!($s = oci_parse($c, $insert_sql))) {
- die("oci_parse(insert) failed!\n");
-}
-
-for ($i = 0; $i<3; $i++) {
- if (!oci_execute($s)) {
- die("oci_execute(insert) failed!\n");
- }
-}
-
-if (!oci_commit($c)) {
- die("oci_commit() failed!\n");
-}
-
-$select_sql = "SELECT * FROM ".$schema.$table_name."";
-
-if (!($s = oci_parse($c, $select_sql))) {
- die("oci_parse(select) failed!\n");
-}
-
-if (!oci_execute($s)) {
- die("oci_execute(select) failed!\n");
-}
-
-while(ocifetch($s)) {
- $i = 1;
- while ($row = ociresult($s, $i)) {
- $i++;
- var_dump($row);
- }
-}
-
-require dirname(__FILE__).'/drop_table.inc';
-
-echo "Done\n";
-?>
---EXPECT--
-string(1) "1"
-string(1) "1"
-string(1) "1"
-string(1) "1"
-string(1) "1"
-string(1) "1"
-Done