forked from D-Net/dnet-hadoop
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:
parent
f8f5cfd5cc
commit
d930b8d3fc
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue