Implements interfaces:
DB_Recorset is intended to be returned by DB_Connection::execute method and to contain results of the SQL statement
Located in /db/db_recordset.class.php [line 27]
Tangra_Class | --DB_Recordset
Methods
Inherited From Tangra_Class
Tangra_Class::get_class_name() Alias of get_class(). Exist because of historical reasons. Tangra_Class::__set() Overides PHP built-in method and just throws exception if called. Purpose - to "forbid" autosetting of nonexisting class properties.
DB_Recordset __construct( )
Constructor
void __destruct( )
Destructor
void close( )
closing the recorset
void fetch_object( )
Fetches row as object
void fetch_row( )
Fetches one row
void is_eof( )
Are there records left?
With this method you can check if there are returned records after execute() or to check are there still left any records after fetch_row()/fetch_object() calls