mirror of
https://github.com/php/php-src.git
synced 2024-12-30 20:23:28 +08:00
34 lines
693 B
PHP
34 lines
693 B
PHP
--TEST--
|
|
ocinewcollection() + 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 = ocinewcollection($c, $type_name));
|
|
|
|
var_dump($coll1->free());
|
|
var_dump($coll1->size());
|
|
|
|
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
|