|
sqlite_currentSQLiteResult::currentSQLiteUnbuffered::currentFetches the current row from a result set as an array Description
array sqlite_current
( resource
$result
[, int $result_type = SQLITE_BOTH
[, bool $decode_binary = true
]] )Object oriented style (method):
array SQLiteResult::current
([ int
$result_type = SQLITE_BOTH
[, bool $decode_binary = true
]] )
array SQLiteUnbuffered::current
([ int
$result_type = SQLITE_BOTH
[, bool $decode_binary = true
]] )sqlite_current is identical to sqlite_fetch_array except that it does not advance to the next row prior to returning the data; it returns the data from the current position only. Parameters
Return Values
Returns an array of the current row from a result set; The column names returned by
See Also
|