|
(PHP 5)
sqlite_fetch_all(no version information, might be only in CVS)
SQLiteResult->fetchAll(no version information, might be only in CVS)
SQLiteUnbuffered->fetchAll -- Obtiene todas las filas del resultado en forma de matriz de matricesMétodo que sigue el estilo orientado a objetos:
class SQLiteResult {sqlite_fetch_all() devuelve una matriz que contiene todos los valores del resultado representado por el parámetro manejador_resultado. Su funcionamiento es similar a emplear la función sqlite_query() (o sqlite_unbuffered_query()) y después llamar a sqlite_fetch_array() para cada una de las filas del resultado.
El identificador del resultado de SQLite. Este parámetro no es obligatorio cuando se emplea el método orientado a objetos.
The optional result_type parameter accepts a constant and determines how the returned array will be indexed. Using SQLITE_ASSOC will return only associative indices (named fields) while SQLITE_NUM will return only numerical indices (ordinal field numbers). SQLITE_BOTH will return both associative and numerical indices. SQLITE_BOTH is the default for this function.
When the decode_binary parameter is set to TRUE (the default), PHP will decode the binary encoding it applied to the data if it was encoded using the sqlite_escape_string(). You should normally leave this value at its default, unless you are interoperating with databases created by other sqlite capable applications.
Devuelve una matriz que contiene las filas restantes del resultado. Si se llama a la función justo después de sqlite_query(), devuelve todas las filas. Si se llama después de la función sqlite_fetch_array(), devuelve el resto. Si el resultado no contiene filas, devuelve una matriz vacía.
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.
Ejemplo 2. Ejemplo orientado a objetos
|
Hosting by: hurra.com
Generated: 2007-01-26 18:01:06