mirror of
https://github.com/php/php-src.git
synced 2025-01-21 03:03:41 +08:00
31 lines
654 B
PHP
31 lines
654 B
PHP
--TEST--
|
|
ocinewcollection()
|
|
--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(ocinewcollection($c, $type_name));
|
|
var_dump(ocinewcollection($c, "NONEXISTENT"));
|
|
|
|
echo "Done\n";
|
|
|
|
require dirname(__FILE__)."/drop_type.inc";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
object(OCI-Collection)#%d (1) {
|
|
["collection"]=>
|
|
resource(%d) of type (oci8 collection)
|
|
}
|
|
|
|
Warning: ocinewcollection(): OCI-22303: type ""."NONEXISTENT" not found in %s on line %d
|
|
bool(false)
|
|
Done
|