Source for file db_recordset.class.php
Documentation is available at db_recordset.class.php
// *** Tangra (Application Framework and Tools for PHP)
* Contains DB_Recordset class
require_once(TANGRA_MAIN_DIR. 'interfaces/i_db_recordset.class.php');
* DB_Recorset is intended to be returned by DB_Connection::execute method and to contain results of the SQL statement
* 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
abstract public function is_eof();
abstract public function close();
|