Source for file db_recordset_installer.class.php
Documentation is available at db_recordset_installer.class.php
// *** Tangra (Application Framework and Tools for PHP)
* Contains DB_Recordset_Installer class
require_once(TANGRA_MAIN_DIR. 'interfaces/i_db_recordset.class.php');
* This class is ment to be used ONLY by module installers
* @param ADORecordSet $rs
if ($rs instanceof ADORecordSet) {
* Fetches one row from recordset
$rez = $this->rs->FetchRow();
* Fetches one row as object from recordset
$rez = $this->rs->FetchNextObject(true);
* @return boolean Returns true if there are no rows in the recordset (or it is empty)
* @return boolean Returns true if there are no rows in the recordset (or it is empty)
public function close() {
|