xref: /PHP-5.5/ext/oci8/tests/coll_001.phpt (revision c7a8bd6a)
1--TEST--
2oci_new_collection()
3--SKIPIF--
4<?php
5$target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on these DBs
6require(dirname(__FILE__).'/skipif.inc');
7?>
8--FILE--
9<?php
10
11require dirname(__FILE__)."/connect.inc";
12require dirname(__FILE__)."/create_type.inc";
13
14var_dump(oci_new_collection($c, $type_name));
15var_dump(oci_new_collection($c, "NONEXISTENT"));
16
17echo "Done\n";
18
19require dirname(__FILE__)."/drop_type.inc";
20
21?>
22--EXPECTF--
23object(OCI-Collection)#%d (1) {
24  ["collection"]=>
25  resource(%d) of type (oci8 collection)
26}
27
28Warning: oci_new_collection(): OCI-22303: type ""."NONEXISTENT" not found in %s on line %d
29bool(false)
30Done
31