Adding H2020 Classification, topic code and topic description to H2020 projects #46

Merged
claudio.atzori merged 59 commits from miriam.baglioni/dnet-hadoop:h2020classification into master 2020-10-05 14:14:39 +02:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit d930b8d3fc - Show all commits

View File

@ -33,7 +33,7 @@ public class ReadProjectsFromDB implements Closeable {
private final BufferedWriter writer;
private final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
private final static String query = "SELECT code , optional1, optional2 " +
private final static String query = "SELECT code " +
"from projects where id like 'corda__h2020%' ";
public static void main(final String[] args) throws Exception {
@ -72,8 +72,8 @@ public class ReadProjectsFromDB implements Closeable {
try {
ProjectSubset p = new ProjectSubset();
p.setCode(rs.getString("code"));
p.setTopiccode(rs.getString("optional1"));
p.setTopicdescription(rs.getString("optional2"));
// p.setTopiccode(rs.getString("optional1"));
// p.setTopicdescription(rs.getString("optional2"));
return Arrays.asList(p);
} catch (final Exception e) {