CUBRID_GET_CLASS_NAME(3) 1 CUBRID_GET_CLASS_NAME(3)
cubrid_get_class_name - Get the class name using OID
SYNOPSIS
string cubrid_get_class_name (resource $conn_identifier, string $oid)
DESCRIPTION
The cubrid_get_class_name(3) function is used to get the class name from $oid. It doesn't work when selecting data from the system tables,
for example db_class.
PARAMETERS
o $conn_identifier
-Connection identifier.
o $oid
-OID of the instance that you want to check the existence.
RETURN VALUES
Class name when process is successful.
FALSE, when process is unsuccessful.
EXAMPLES
Example #1
cubrid_get_class_name(3) example
<?php
$conn = cubrid_connect("localhost", 33000, "demodb", "dba");
$req = cubrid_execute($conn, "SELECT * FROM code", CUBRID_INCLUDE_OID);
$oid = cubrid_current_oid($req);
$class_name = cubrid_get_class_name($conn, $oid);
print_r($class_name);
cubrid_disconnect($conn);
?>
The above example will output:
code
SEE ALSO
cubrid_is_instance(3), cubrid_drop(3).
PHP Documentation Group CUBRID_GET_CLASS_NAME(3)