result set

This commit is contained in:
jackdaw@loafle.com 2017-04-25 15:52:45 +09:00
parent f925215b89
commit ef9a693b80

View File

@ -14,6 +14,13 @@ public class OFResultSet {
Item item;
List<String []> rows;
List<String> meta;
public OFResultSet(Item item) {
this(item,null);
}
public OFResultSet(Item item,List<String> meta) {
this.item = item;
this.rows = new ArrayList<>();