downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

cubrid_list_dbs> <cubrid_insert_id
Last updated: Fri, 24 Sep 2010

view this page in

cubrid_is_instance

(PECL CUBRID >= 8.3.0)

cubrid_is_instanceIs used to check whether the instance

Description

int cubrid_is_instance ( resource $conn_identifier , string $oid )

The cubrid_is_instance() function is used to check whether the instance pointed by the given oid exists or not.

Parameters

conn_identifier

Connection identifier.

oid

Oid of the instance that you want to check the existence.

Return Values

1, if such instance exists;

0, if such instance does not exist;

-1, in case of error

Examples

Example #1 cubrid_is_instance() example

<?php
$target_oid 
cubrid_get ($con$oid"customer");
$res cubrid_is_instance ($con$target_oid);
if (
$res == 1) {
   echo 
"$oid is presents.\n";
} else if (
$res == 0){
   echo 
"$oid is not presents.\n";
} else {
   echo 
"error\n";
}
?>

See Also



add a note add a note User Contributed Notes
cubrid_is_instance
There are no user contributed notes for this page.

cubrid_list_dbs> <cubrid_insert_id
Last updated: Fri, 24 Sep 2010
 
 
show source | credits | sitemap | contact | advertising | mirror sites