summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/coll_013.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/coll_013.phpt')
-rw-r--r--ext/oci8/tests/coll_013.phpt38
1 files changed, 0 insertions, 38 deletions
diff --git a/ext/oci8/tests/coll_013.phpt b/ext/oci8/tests/coll_013.phpt
deleted file mode 100644
index 00d88bb9a4..0000000000
--- a/ext/oci8/tests/coll_013.phpt
+++ /dev/null
@@ -1,38 +0,0 @@
---TEST--
-collections and correct dates (2)
---SKIPIF--
-<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
---FILE--
-<?php
-
-require dirname(__FILE__)."/connect.inc";
-
-$ora_sql = "DROP TYPE
- ".$type_name."
- ";
-
-$statement = OCIParse($c,$ora_sql);
-@OCIExecute($statement);
-
-$ora_sql = "CREATE TYPE ".$type_name." AS TABLE OF DATE";
-
-$statement = OCIParse($c,$ora_sql);
-OCIExecute($statement);
-
-
-$coll1 = ocinewcollection($c, $type_name);
-
-var_dump($coll1->append("28-JUL-05"));
-var_dump($coll1->assignElem(0,"01-JAN-05"));
-var_dump($coll1->getElem(0));
-
-echo "Done\n";
-
-require dirname(__FILE__)."/drop_type.inc";
-
-?>
---EXPECT--
-bool(true)
-bool(true)
-string(9) "01-JAN-05"
-Done