Uses of Class
oracle.nosql.driver.ops.QueryRequest
Package
Description
Contains the public API for using the Oracle NoSQL Database
as well as configuration and common parameter classes used in
database operations.
Contains the input and response classes used for Oracle NoSQL
Database operations.
-
Uses of QueryRequest in oracle.nosql.driver
Modifier and TypeMethodDescriptionNoSQLHandle.query
(QueryRequest request) Queries a table based on the query statement specified in theQueryRequest
.NoSQLHandle.queryIterable
(QueryRequest request) Queries a table based on the query statement specified in theQueryRequest
while returning an iterable result. -
Uses of QueryRequest in oracle.nosql.driver.ops
Modifier and TypeMethodDescriptionQueryRequest.setCompartment
(String compartment) Cloud service only.QueryRequest.setConsistency
(Consistency consistency) Sets theConsistency
to use for the operationQueryRequest.setContinuationKey
(byte[] continuationKey) Deprecated.There is no reason to use this method anymore, because setting the continuation key is now done internally.QueryRequest.setDurability
(Durability durability) Sets the durability to use for the operation.QueryRequest.setLimit
(int limit) Sets the limit on number of items returned by the operation.QueryRequest.setMathContext
(MathContext mathContext) Sets theMathContext
used forBigDecimal
operations.QueryRequest.setMaxMemoryConsumption
(long maxBytes) Sets the maximum number of memory bytes that may be consumed by the statement at the driver for operations such as duplicate elimination (which may be required due to the use of an index on an array or map) and sorting.QueryRequest.setMaxReadKB
(int maxReadKB) Sets the limit on the total data read during this operation, in KB.QueryRequest.setMaxWriteKB
(int maxWriteKB) Sets the limit on the total data written during this operation, in KB.QueryRequest.setNamespace
(String namespace) Sets the optional namespace.QueryRequest.setPreparedStatement
(PreparedStatement preparedStatement) Sets the prepared query statement.QueryRequest.setPreparedStatement
(PrepareResult prepareResult) A convenience method to set the prepared query statement from a PrepareResultQueryRequest.setStatement
(String statement) Sets the query statement.QueryRequest.setTimeout
(int timeoutMs) Sets the request timeout value, in milliseconds.