db_debug) { return $this->db->display_error('db_unsuported_feature'); } return FALSE; } // -------------------------------------------------------------------- /** * Optimize table query * * Is optimization even supported in Interbase/Firebird? * * @param string the table name * @return object */ public function _optimize_table($table) { return FALSE; } // -------------------------------------------------------------------- /** * Repair table query * * Table repairs are not supported in Interbase/Firebird * * @param string the table name * @return object */ public function _repair_table($table) { return FALSE; } // -------------------------------------------------------------------- /** * Interbase/Firebird Export * * @param array Preferences * @return mixed */ public function _backup($params = array()) { // Currently unsupported // @todo See if can be implemented return $this->db->display_error('db_unsuported_feature'); } } /* End of file interbase_utility.php */ /* Location: ./system/database/drivers/interbase/interbase_utility.php */