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