PHP Velho Oeste 2024

sybase_fetch_field

(PHP 4, PHP 5)

sybase_fetch_fieldLit les informations d'un champ Sybase

Avertissement

Cette fonction a été SUPPRIMÉE à partir de PHP 7.0.0.

Description

sybase_fetch_field ( resource $result [, int $field_offset = -1 ] ) : object

Obtient des informations à propos des champs dans le résultat result.

Liste de paramètres

result

field_offset

Si l'offset du champ n'est pas précisé, le champ suivant est traité.

Valeurs de retour

Retourne un objet contenant les informations du champ.

Les propriétés des objets sont :

  • "name" : nom de la colonne. Si la colonne est un résultat de fonction, le nom de cette fonction devient computed#N, où #N est un numéro de série.
  • "column_source" : la table d'origine de la colonne
  • "max_length" : taille maximale de la colonne
  • "numeric" : 1 si la colonne est de type numérique
  • "type" : type de données de la colonne

Voir aussi

add a note add a note

User Contributed Notes 2 notes

up
0
anthony dot leung at virgin dot net
20 years ago
Bit short on comments and tips bout this one so head down to mysql_fetch_fields where the concept is the same. I seemed to get an infinite loop over there using the $i counter tho, so I used a for loop instead.
The list of properties you can get from what I've called $info is in the example to the mysql equivalent.

//start of an example to print out column headings

echo "<table><tr>";
  $numfields=sybase_num_fields($query);
  for ($f=0;$f<=$numfields;$f++){
    $info = sybase_fetch_field($query);
    echo "<td> $info->name </td>";
  }
  echo "</tr><tr>";
up
0
gray at voicenet dot com
24 years ago
The 'type' field contains (roughly) the datatype of the source column.  Types returned are:

  'type'   Sybase Type
  -------  --------------------------
  string   CHAR, VARCHAR, TEXT
  image    IMAGE
  blob     BINARY, VARBINARY
  bit      BIT
  int      TINYINT, SMALLINT, INT
  real     REAL, FLOAT, NUMERIC, DECIMAL
  money    MONEY
  datetime DATETIME, SMALLDATETIME
To Top