PHP Doku:: Is used to get the number of columns - function.cubrid-num-cols.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_num_cols

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_new_glo

cubrid_num_fields>>

cubrid_num_cols

(PECL CUBRID >= 8.3.0)

cubrid_num_colsIs used to get the number of columns

Beschreibung

int cubrid_num_cols ( resource $req_identifier )

The cubrid_num_cols() function is used to get the number of columns from the query result. It can only be used when the query executed is a select sentence.

Parameter-Liste

req_identifier

Request identifier.

Rückgabewerte

Number of columns, when process is successful.

-1, if SQL sentence is not SELECT.

Beispiele

Beispiel #1 cubrid_num_cols() example

<?php
$req 
cubrid_execute ($con"select * from member");
if (
$req) {
  
$rows_count cubrid_num_rows ($req);
  
$cols_count cubrid_num_cols ($req);
  echo 
"result set rows count : $rows\n";
  echo 
"result set columns count : $cols\n";
  
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",...)