blob: cc69f9b506528e52a9e6e8c85c20eb37b0b7568b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
--TEST--
ocinewcollection() + free()
--SKIPIF--
<?php
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
require(__DIR__.'/skipif.inc');
?>
--FILE--
<?php
require __DIR__."/connect.inc";
require __DIR__."/create_type.inc";
var_dump($coll1 = ocinewcollection($c, $type_name));
var_dump($coll1->free());
var_dump($coll1->size());
echo "Done\n";
require __DIR__."/drop_type.inc";
?>
--EXPECTF--
object(OCI-Collection)#%d (1) {
["collection"]=>
resource(%d) of type (oci8 collection)
}
bool(true)
Warning: OCI-Collection::size(): supplied resource is not a valid oci8 collection resource in %s on line %d
bool(false)
Done
|