db_debug) { return $this->db->display_error('db_unsuported_feature'); } } // -------------------------------------------------------------------- /** * Optimize table query * * Is optimization even supported in SQLite? * * @param string the table name * @return bool */ public function _optimize_table($table) { // Not supported return FALSE; } // -------------------------------------------------------------------- /** * Repair table query * * Are table repairs even supported in SQLite? * * @param string the table name * @return object */ public function _repair_table($table) { // Not supported return FALSE; } // -------------------------------------------------------------------- /** * SQLite Export * * @param array Preferences * @return mixed */ public function _backup($params = array()) { // Not supported return $this->db->display_error('db_unsuported_feature'); } } /* End of file sqlite3_utility.php */ /* Location: ./system/database/drivers/sqlite3/sqlite3_utility.php */