Lines Matching refs:maxrows
293 public TableResult get_table(String sql, int maxrows) in get_table() argument
295 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() argument
348 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()
407 if (tbl.maxrows <= 0 || !tbl.atmaxrows) { in get_table()
415 if (tbl.maxrows > 0) { in get_table()
416 while (tbl.nrows < tbl.maxrows && vm.step(tbl)) { in get_table()