db->database) OR ! @unlink($this->db->database)) { if ($this->db->db_debug) { return $this->db->display_error('db_unable_to_drop'); } return FALSE; } return TRUE; } // -------------------------------------------------------------------- /** * Drop Table * * Unsupported feature in SQLite * * @access private * @return bool */ function _drop_table($table) { if ($this->db->db_debug) { return $this->db->display_error('db_unsuported_feature'); } return array(); } // -------------------------------------------------------------------- /** * Optimize table query * * Is optimization even supported in SQLite? * * @access private * @param string the table name * @return object */ function _optimize_table($table) { return FALSE; } // -------------------------------------------------------------------- /** * Repair table query * * Are table repairs even supported in SQLite? * * @access private * @param string the table name * @return object */ function _repair_table($table) { return return FALSE; } } ?>