diff options
Diffstat (limited to 'ext/oci8/tests/coll_002_func.phpt')
| -rw-r--r-- | ext/oci8/tests/coll_002_func.phpt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ext/oci8/tests/coll_002_func.phpt b/ext/oci8/tests/coll_002_func.phpt new file mode 100644 index 0000000..9d8e4cf --- /dev/null +++ b/ext/oci8/tests/coll_002_func.phpt @@ -0,0 +1,33 @@ +--TEST-- +oci_new_collection() + free() +--SKIPIF-- +<?php +$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs +require(dirname(__FILE__).'/skipif.inc'); +?> +--FILE-- +<?php + +require dirname(__FILE__)."/connect.inc"; +require dirname(__FILE__)."/create_type.inc"; + +var_dump($coll1 = oci_new_collection($c, $type_name)); + +var_dump(oci_free_collection($coll1)); +var_dump(oci_collection_size($coll1)); + +echo "Done\n"; + +require dirname(__FILE__)."/drop_type.inc"; + +?> +--EXPECTF-- +object(OCI-Collection)#%d (1) { + ["collection"]=> + resource(%d) of type (oci8 collection) +} +bool(true) + +Warning: oci_collection_size(): %d is not a valid oci8 collection resource in %s on line %d +bool(false) +Done |
