PHP.nl

cubrid_get_class_name

cubrid_get_class_name

Get the class name using OID

string **cubrid_get_class_name** resource $conn_identifier string $oid
The  function is used to get the
class name from . It doesn't work when selecting data from the system tables,
for example db_class.

cubrid_get_class_name``oid

conn_identifierConnection identifier.

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

Class name when process is successful,return.falseforfailure.

Voorbeeld: 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);
?>
code

cubrid_is_instance``cubrid_drop