changed the query to get only the code of the project and not the optional1 (topic code) and optional2 (topic description)

This commit is contained in:
Miriam Baglioni 2020-09-28 12:15:48 +02:00
parent f8f5cfd5cc
commit d930b8d3fc
1 changed files with 3 additions and 3 deletions

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) {