Home
last modified time | relevance | path

Searched refs:maxrows (Results 1 – 5 of 5) sorted by relevance

/external/javasqlite/src/main/java/SQLite/
DTableResult.java66 public int maxrows = 0; field in TableResult
86 public TableResult(int maxrows) { in TableResult() argument
87 this.maxrows = maxrows; in TableResult()
126 if (maxrows > 0 && nrows >= maxrows) { in newrow()
DDatabase.java293 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()
[all …]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DTableResultX.java17 public TableResultX(int maxrows) { in TableResultX() argument
18 super(maxrows); in TableResultX()
31 this.maxrows = tr.maxrows; in TableResultX()
DJDBCStatement.java11 protected int maxrows = 0; field in JDBCStatement
32 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()
/external/python/cpython2/Modules/_sqlite/
Dcursor.c943 int maxrows = self->arraysize; in pysqlite_cursor_fetchmany() local
946 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:fetchmany", kwlist, &maxrows)) { in pysqlite_cursor_fetchmany()
967 if (++counter == maxrows) { in pysqlite_cursor_fetchmany()