Manuel PHP
Précédent
Suivant
ibase_field_info() retourne un tableau contenant les informations sur le champs numéro field_number après une requête de SELECT.
Le tableau contient les index name (nom), alias, relation, length (taille), type.
?php / / helio@helio.com.br 08-Dec-2000 02:53 $rs=ibase_query( "Select * from unetable"); $coln = ibase_num_fields($rs); for ($i=0; $i $coln; $i++) {$col_info = ibase_field_info($rs, $i); echo "nom: ".$col_info['name'] ."\n"; echo "alias: ".$col_info['alias'] ."\n"; echo "relation: ".$col_info['relation'] ."\n"; echo "taille: ".$col_info['length'] ."\n"; echo "type: ".$col_info['type'] ."\n";}?
Précédent
Sommaire
Suivant
Niveau supérieur