Adding H2020 Classification, topic code and topic description to H2020 projects #46
|
@ -33,7 +33,7 @@ public class ReadProjectsFromDB implements Closeable {
|
||||||
private final BufferedWriter writer;
|
private final BufferedWriter writer;
|
||||||
private final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
|
private final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
|
||||||
|
|
||||||
private final static String query = "SELECT code " +
|
private final static String query = "SELECT code , optional1, optional2" +
|
||||||
"from projects where id like 'corda__h2020%' ";
|
"from projects where id like 'corda__h2020%' ";
|
||||||
|
|
||||||
public static void main(final String[] args) throws Exception {
|
public static void main(final String[] args) throws Exception {
|
||||||
|
@ -72,7 +72,8 @@ public class ReadProjectsFromDB implements Closeable {
|
||||||
try {
|
try {
|
||||||
ProjectSubset p = new ProjectSubset();
|
ProjectSubset p = new ProjectSubset();
|
||||||
p.setCode(rs.getString("code"));
|
p.setCode(rs.getString("code"));
|
||||||
|
p.setTopiccode(rs.getString("optional1"));
|
||||||
|
p.setTopicdescription(rs.getString("optional2"));
|
||||||
return Arrays.asList(p);
|
return Arrays.asList(p);
|
||||||
|
|
||||||
} catch (final Exception e) {
|
} catch (final Exception e) {
|
||||||
|
|
Loading…
Reference in New Issue