ResultSet resultSet = _loadTopicsForBlogStmt.executeQuery();
loadResultInList(topics,resultSet);
_loadTopicsForBlogStmt.close();
} catch (SQLException e) {
topics = null;
throw new MapacheException("Error occurred when loading topics from database", e);
} catch (DAOException e) {
topics = null;
throw new MapacheException("Error occurred when loading topics from database", e);
} finally{
MySQLDAOFactory.freeConnection(_oConn);
}
return topics;
}