Searched refs:maxrows (Results 1 – 4 of 4) sorted by relevance
66 public int maxrows = 0; field in TableResult86 public TableResult(int maxrows) { in TableResult() argument87 this.maxrows = maxrows; in TableResult()126 if (maxrows > 0 && nrows >= maxrows) { in newrow()
293 public TableResult get_table(String sql, int maxrows) in get_table() argument295 TableResult ret = new TableResult(maxrows); in get_table()300 if (maxrows <= 0 || !ret.atmaxrows) { in get_table()309 if (ret.maxrows > 0) { in get_table()310 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()346 public TableResult get_table(String sql, int maxrows, String args[]) in get_table() argument348 TableResult ret = new TableResult(maxrows); in get_table()353 if (maxrows <= 0 || !ret.atmaxrows) { in get_table()362 if (ret.maxrows > 0) { in get_table()363 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()[all …]
17 public TableResultX(int maxrows) { in TableResultX() argument18 super(maxrows); in TableResultX()31 this.maxrows = tr.maxrows; in TableResultX()
11 protected int maxrows = 0; field in JDBCStatement32 return maxrows; in getMaxRows()39 maxrows = max; in setMaxRows()108 tr = conn.db.get_table(sql, maxrows); in executeQuery()114 tr = conn.db.get_table(sql, maxrows, args); in executeQuery()