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)
| 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 |