PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

sqlite_create_aggregate> <sqlite_close
Last updated: Fri, 22 Aug 2008

view this page in

sqlite_column

SQLiteResult->column

SQLiteUnbuffered->column

(PHP 5, PECL sqlite:1.0-1.0.3)

sqlite_column -- SQLiteResult->column -- SQLiteUnbuffered->columnObtiene una columna de la fila actual del resultado

Descripción

mixed sqlite_column ( resource $manejador_resultado , mixed $indice_o_nombre [, bool $decodificar_binario ] )
SQLiteResult
mixed column ( mixed $indice_o_nombre [, bool $decodificar_binario ] )
SQLiteUnbuffered
mixed column ( mixed $indice_o_nombre [, bool $decodificar_binario ] )

Obtiene el valor de la columna llamada indice_o_nombre (si el parámetro es una cadena) o el valor de la columna cuyo índice es indice_o_nombre (si el parámetro es un número entero) dentro de la fila actual del resultado identificado por manejador_resultado .

Lista de parámetros

manejador_resultado

El identificador del resultado de SQLite. Este parámetro no es obligatorio cuando se emplea el método orientado a objetos.

indice_o_nombre

El índice o nombre de la columna que se quiere obtener.

decodificar_binario

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.

Notes

Note: Se emplea esta función cuando se está iterando sobre un resultado muy grande con un gran número de columnas o cuando las columnas contienen un gran número de datos.

Ver también



add a note add a note User Contributed Notes
sqlite_column
There are no user contributed notes for this page.

sqlite_create_aggregate> <sqlite_close
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites