result set

This commit is contained in:
jackdaw@loafle.com 2017-04-25 16:07:34 +09:00
parent 632677db7c
commit af1d09351c

View File

@ -56,7 +56,12 @@ public class OFResultSet {
public Map<String,String> getData() {
return null;
String type = (String) this.item.getQuery().getQueryInfo().get("parseType");
if (type.equals("row")) {
return parseRow();
} else {
return parseCol();
}
}
public Map<String, String> parseCol() {