PHP Velho Oeste 2024

sybase_fetch_field

(PHP 4, PHP 5)

sybase_fetch_fieldObtiene información de un campo de resultado Sybase

Descripción

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

sybase_fetch_field() puede utilizarse para obtener información de campos de resultado de una consulta.

Parámetros

result

field_offset

Si no se especifica el campo offset, se obtiene el siguiente campo que no había sido obtenido todavía con sybase_fetch_field().

Valores devueltos

Devuelve un objeto que contiene información de campo.

Las propiedades del objeto son:

  • name - nombre de la columna. Si la columna es un resultado de una función, esta propiedad toma el valor computed#N, donde #N es un número de serie.
  • column_source - la tabla de origen de la columna
  • max_length - longitud máxima de la columna
  • numeric - 1 si la columna es numérica
  • type - tipo de datos de la columna

Ver también

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