PHP Doku:: Is used to get the oid of the current cursor location - function.cubrid-current-oid.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_current_oid

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_connect

cubrid_data_seek>>

cubrid_current_oid

(PECL CUBRID >= 8.3.0)

cubrid_current_oidIs used to get the oid of the current cursor location

Beschreibung

string cubrid_current_oid ( resource $req_identifier )

The cubrid_current_oid() function is used to get the oid of the current cursor location from the query result. To use cubrid_current_oid(), the query executed must be a updatable query, and the CUBRID_INCLUDE_OID option must be included during the query execution.

Parameter-Liste

req_identifier

Request identifier.

Rückgabewerte

Oid of current cursor location, when process is successful

FALSE, when process is unsuccessful.

Beispiele

Beispiel #1 cubrid_current_oid() example

<?php
$req 
=cubrid_execute($con,"select * from person where id =1",
                           
CUBRID_INCLUDE_OID);
if (
$req) {
   
cubrid_fetch ($req);
   
$oid cubrid_current_oid ($req);
   
cubrid_close_request ($req);
   echo 
"OID is $oid";
}
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)