PHP 8.3.4 Released!

cubrid_get_class_name

(PECL CUBRID >= 8.3.0)

cubrid_get_class_nameGet the class name using OID

Beschreibung

cubrid_get_class_name(resource $conn_identifier, string $oid): string

The cubrid_get_class_name() 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.

Parameter-Liste

conn_identifier

Connection identifier.

oid

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

Rückgabewerte

Class name when process is successful,Bei einem Fehler wird false zurückgegeben..

Beispiele

Beispiel #1 cubrid_get_class_name() 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);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

code

Siehe auch

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top