PHP Doku:: Returns the type of the column corresponding to the given field offset - function.cubrid-field-type.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenCubridCubrid Funktionencubrid_field_type

Ein Service von Reinhard Neidl - Webprogrammierung.

Cubrid Funktionen

<<cubrid_field_table

cubrid_free_result>>

cubrid_field_type

(PECL CUBRID >= 8.3.0)

cubrid_field_typeReturns the type of the column corresponding to the given field offset

Beschreibung

string cubrid_field_type ( resource $req_identifier , int $field_offset )

This function returns the type of the column corresponding to the given field offset. The returned field type could be one of the following: "int", "real", "string", etc.

Parameter-Liste

req_identifier

This is the requeset identifier.

field_offset

The numerical field offset. The field_offset starts at 0. If field_offset does not exist, an error of level E_WARNING is also issued.

Rückgabewerte

Type of the column, on success.

FALSE when invalid field_offset value.

-1 if SQL sentence is not SELECT.

Beispiele

Beispiel #1 cubrid_field_type() example

<?php
    $link 
cubrid_connect("localhost"30000"demodb2""dba""");
    if (!
$link)
    {
        die(
'Could not connect.');
    }
    
$query 'SELECT id, name, address, salary FROM employees';
    
$result cubrid_execute($link$query);
    if (
$result
    {
        echo 
"Field 0 (<b>"cubrid_field_name($result0) . "</b>) has type <i>" cubrid_field_type($result0) . "</i><br>";
        echo 
"Field 1 (<b>"cubrid_field_name($result1) . "</b>) has type <i>" cubrid_field_type($result1) . "</i><br>";
        
        
cubrid_close_request($result); 
    }
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Result:
Field 0 (id) has type INT
Field 1 (name) has type STRING

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