sqlite_column

SQLiteResult::column

SQLiteUnbuffered::column

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0)

sqlite_column -- SQLiteResult::column -- SQLiteUnbuffered::columnFetches a column from the current row of a result set

说明

sqlite_column ( resource $result , mixed $index_or_name [, bool $decode_binary = TRUE ] ) : mixed
SQLiteResult::column ( mixed $index_or_name [, bool $decode_binary = TRUE ] ) : mixed
SQLiteUnbuffered::column ( mixed $index_or_name [, bool $decode_binary = TRUE ] ) : mixed

Fetches the value of a column named index_or_name (if it is a string), or of the ordinal column numbered index_or_name (if it is an integer) from the current row of the query result handle result.

参数

result

The SQLite result resource. This parameter is not required when using the object-oriented method.

index_or_name

The column index or name to fetch.

decode_binary

decode_binary 参数设置为 TRUE(默认值)时,PHP 会解码那些由 sqlite_escape_string() 编码后的二进制数据。通常应保留此值为其默认值,除非要与其他使用 SQLlite 的应用程序建立的数据交互。

返回值

Returns the column value.

注释

Note:

Use this function when you are iterating a large result set with many columns, or with columns that contain large amounts of data.

参见

相关文章
php cubrid 函数 fetch the next row from a result setphp cubrid 函数 delete an element from set type column using oidphp ibm db2 函数 returns an array indexed by column position representing a row in a result setphp ibm db2 函数 returns an array indexed by column name representing a row in a result setphp ibm db2 函数 returns an array indexed by both column name and position representing a row in a result setphp ibm db2 函数 returns the width of the current value of the indicated column in a result setphp ibm db2 函数 returns a single column from a row in the result setphp dbx 函数 fetches rows from a query result that had the dbx result unbuffered flag setphp maxdb 函数 returns the lengths of the columns of the current row in the result setphp maxdb 函数 returns the current row of a result set as an objectphp postgresql 函数 fetches all rows in a particular result column as an arrayphp sqlite 函数 fetches a column from the current row of a result setphp sqlite 函数 fetches the current row from a result set as an arrayphp sqlite 函数 fetches all rows from a result set as an array of arraysphp sqlite 函数 fetches the next row from a result set as an arrayphp sqlite 函数 fetches the next row from a result set as an objectphp sqlite 函数 fetches the first column of a result set as a stringphp sqlite 函数 seek to the previous row number of a result setphp sqlite 函数 seek to a particular row number of a buffered result setphp sqlite3result resets the result set back to the first row
关注编程学问公众号