(PHP 5)
sqlite_fetch_array
(no version information, might be only in CVS)
SQLiteResult->fetch
(no version information, might be only in CVS)
SQLiteUnbuffered->fetch -- Obtiene la siguiente fila del resultado en forma de matriz
Descripción
array
sqlite_fetch_array ( resource manejador_resultado [, int tipo_resultado [, bool decodificar_binario]] )
Método que sigue el estilo orientado a objetos:
class
SQLiteResult {
array
fetch ( [int tipo_resultado [, bool decodificar_binario]] )
}class
SQLiteUnbuffered {
array
fetch ( [int tipo_resultado [, bool decodificar_binario]] )
}
Obtiene la siguiente fila del resultado identificado mediante el parámetro
manejador_resultado. Si no existen mas filas, devuelve
FALSE, en cualquier otro caso, devuelve una matriz asociativa que contiene los datos
de la fila.
Valores retornados
Devuelve una matriz con los datos de la siguiente fila del resultado o FALSE
si la siguiente posición se encuentra más allá de la última fila.
The column names returned by
SQLITE_ASSOC and SQLITE_BOTH will be
case-folded according to the value of the
sqlite.assoc_case configuration
option.