MCPcopy Create free account
hub / github.com/cruppstahl/upscaledb / selectRange

Method selectRange

java/java/de/crupp/upscaledb/Environment.java:491–496  ·  view source on GitHub ↗

Performs a paginated "UQI Select" query. This function is similar to Environment::select(), but uses two cursors for specifying the range of the data. Make sure that both cursors are operating on the same database as the query. Both cursors are optional; if `begin' is null then the query will start

(String query, Cursor begin, Cursor end)

Source from the content-addressed store, hash-verified

489 * Database handle.
490 */
491 public Result selectRange(String query, Cursor begin, Cursor end)
492 throws DatabaseException {
493 return new Result(ups_env_select_range(m_handle, query,
494 begin != null ? begin.getHandle() : 0l,
495 end != null ? end.getHandle() : 0l));
496 }
497
498 /**
499 * Closes this Database Environment

Callers 2

testSelectRangeMethod · 0.95
selectMethod · 0.95

Calls 2

ups_env_select_rangeMethod · 0.95
getHandleMethod · 0.45

Tested by 1

testSelectRangeMethod · 0.76