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>";
sybase_fetch_field
(PHP 4, PHP 5)
sybase_fetch_field — Lit les informations d'un champ Sybase
Description
object sybase_fetch_field
( resource $result
[, int $field_offset
] )
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
sybase_fetch_field
anthony dot leung at virgin dot net
25-Jun-2003 11:44
25-Jun-2003 11:44
gray at voicenet dot com
15-Oct-1999 03:27
15-Oct-1999 03:27
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
