Skip to content

Commit

Permalink
Fix JDBCDDB.java so that last column of a table is retrieved. Updated…
Browse files Browse the repository at this point in the history
… ddb.jar accordingly.
  • Loading branch information
ggalibert committed Aug 29, 2017
1 parent 859b584 commit 4daebca
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified Java/ddb.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion Java/src/org/imos/ddb/JDBCDDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public ArrayList<Object> executeQuery(
ArrayList<Object> instance = new ArrayList<Object>();
results.add(instance);

for (int i = 1; i < columnsNumber; i++) {
for (int i = 1; i <= columnsNumber; i++) {

DBObject db = new DBObject();

Expand Down

0 comments on commit 4daebca

Please sign in to comment.