PHP Doku:: Is used to get the column names - function.cubrid-column-names.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_column_names

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_col_size

cubrid_column_types>>

cubrid_column_names

(PECL CUBRID >= 8.3.0)

cubrid_column_namesIs used to get the column names

Beschreibung

array cubrid_column_names ( resource $req_identifier )

The cubrid_column_names() function is used to get the column names of the query result by using req_identifier.

Parameter-Liste

req_identifier

Request identifier.

Rückgabewerte

Array of string which containing column names, when process is successful.

FALSE, when process is unsuccessful.

Beispiele

Beispiel #1 cubrid_column_names() example

<?php
$req 
cubrid_execute ($con"select * from person");
if (
$req) {
   
$coltypes cubrid_column_types ($req);
   
$colnames cubrid_column_names ($req);
   while (list (
$key$coltype) = each ($coltypes))
      echo 
$coltype;
   while (list (
$key$colname) = each ($colnames))
      echo 
$colname;
   
cubrid_close_request ($req);
}
?>

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",...)