![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
|||||||||||
sqlite_unbuffered_query(PHP 5) sqlite_unbuffered_query(no version information, might be only in CVS) SQLiteDatabase->unbufferedQuery -- Execute a query that does not prefetch and buffer all dataDescriptionresource sqlite_unbuffered_query ( resource dbhandle, string query [, int result_type] )resource sqlite_unbuffered_query ( string query, resource dbhandle [, int result_type] ) Object oriented style (method): class SQLiteDatabase {SQLiteUnbuffered unbufferedQuery ( string query [, int result_type] ) } sqlite_unbuffered_query() is identical to sqlite_query() except that the result that is returned is a sequential forward-only result set that can only be used to read each row, one after the other. This function is ideal for generating things such as HTML tables where you only need to process one row at a time and don't need to randomly access the row data.
Parameters
Return ValuesReturns a result handle or FALSE on failure. sqlite_unbuffered_query() returns a sequential forward-only result set that can only be used to read each row, one after the other. Copyright © 1997 - 2007 by the PHP Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later. A copy of the Open Publication License is distributed with this manual, the latest version is presently available at http://www.opencontent.org/openpub/. Please see full copyright text at http://www.php.net/manual/en/copyright.php Original version of the above documentation is available at http://www.php.net/manual/en/ |
|