Class QueryRequest
- All Implemented Interfaces:
- AutoCloseable
PreparedStatement), which may include bind variables.
 For performance reasons prepared queries are preferred for queries that may be reused. This is because prepared queries bypass query compilation. They also allow for parameterized queries using bind variables.
There are two ways to get the results of a query: using an iterator or loop through partial results.
Iterator
 Use NoSQLHandle.queryIterable(QueryRequest) to get an iterable
 that contains all the results. Usage example:
 
    NoSQLHandle handle = ...;
    try (
        QueryRequest qreq = new QueryRequest().setStatement("select * from foo");
        QueryIterableResult qir = handle.queryIterable(qreq)) {
        for( MapValue row : qir) {
            // do something with row
        }
    }
 
 Partial results
 To compute and retrieve the full result set of a query, the same QueryRequest
 instance will, in general, have to be executed multiple times (via
 NoSQLHandle.query(oracle.nosql.driver.ops.QueryRequest). Each execution returns a QueryResult,
 which contains a subset of the result set. The following code snipet
 illustrates a typical query execution:
 
 NoSQLHandle handle = ...;
 QueryRequest qreq = new QueryRequest().setStatement("select * from foo");
 do {
   QueryResult qres = handle.query(qreq);
   List<MapValue> results = qres.getResults();
   // do something with the results
 } while (!qreq.isDone())
 
 Notice that a batch of results returned by a QueryRequest execution
 may be empty. This is because during each execution the query is allowed to
 read or write a maximum number of bytes. If this maximum is reached, execution
 stops. This can happen before any result was generated (for example, if none
 of the rows read satisfied the query conditions).
 
 If an application wishes to terminate query execution before retrieving all
 the query results, it should call close() in order to release any
 local resources held by the query. This also allows the application to reuse
 the QueryRequest instance to run the same query from the beginning or a
 different query.
 
QueryRequest instances are not thread-safe. That is, if two or more application threads need to run the same query concurrently, they must create and use their own QueryRequest instances.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Terminates the query execution and releases any memory consumed by the query at the driver.Returns the consistency set for this request, or null if not set.byte[]Deprecated.intgetLimit()Returns the limit on number of items returned by the operation.Returns theMathContextused forBigDecimaloperations.longReturns 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 (sorting by distance when a query contains a geo_near() function).intReturns the limit on the total data read during this operation, in KB.intReturns the limit on the total data written during this operation, in KB.Returns the prepared query statementReturns the query statementintReturns the timeout to use for the operation, in milliseconds.Returns the type name of the request.booleanisDone()Returns true if the query execution is finished, i.e., there are no more query results to be generated.setCompartment(String compartment) Cloud service only.setConsistency(Consistency consistency) Sets theConsistencyto use for the operationsetContinuationKey(byte[] continuationKey) Deprecated.There is no reason to use this method anymore, because setting the continuation key is now done internally.setDurability(Durability durability) Sets the durability to use for the operation.setLimit(int limit) Sets the limit on number of items returned by the operation.setMathContext(MathContext mathContext) Sets theMathContextused forBigDecimaloperations.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.setMaxReadKB(int maxReadKB) Sets the limit on the total data read during this operation, in KB.setMaxWriteKB(int maxWriteKB) Sets the limit on the total data written during this operation, in KB.setNamespace(String namespace) Sets the optional namespace.setPreparedStatement(PreparedStatement preparedStatement) Sets the prepared query statement.setPreparedStatement(PrepareResult prepareResult) A convenience method to set the prepared query statement from a PrepareResultsetStatement(String statement) Sets the query statement.setTimeout(int timeoutMs) Sets the request timeout value, in milliseconds.Methods inherited from class oracle.nosql.driver.ops.DurableRequestgetDurabilityMethods inherited from class oracle.nosql.driver.ops.RequestgetCompartment, getNamespace, getRateLimitDelayedMs, getReadRateLimiter, getRetryStats, getWriteRateLimiter, setReadRateLimiter, setWriteRateLimiter
- 
Constructor Details- 
QueryRequestpublic QueryRequest()Default constructor for QueryRequest
 
- 
- 
Method Details- 
setCompartmentCloud service only.Sets the name or id of a compartment to be used for this operation. The compartment may be specified as either a name (or path for nested compartments) or as an id (OCID). A name (vs id) can only be used when authenticated using a specific user identity. It is not available if authenticated as an Instance Principal which can be done when calling the service from a compute instance in the Oracle Cloud Infrastructure. See SignatureProvider.createWithInstancePrincipal()- Parameters:
- compartment- the name or id. If using a nested compartment, specify the full compartment path- compartmentA.compartmentB, but exclude the name of the root compartment (tenant).
- Returns:
- this
 
- 
getLimitpublic int getLimit()Returns the limit on number of items returned by the operation. If not set by the application this value will be 0 which means no limit set.- Returns:
- the limit, or 0 if not set
 
- 
setLimitSets the limit on number of items returned by the operation. This allows an operation to return less than the default amount of data.- Parameters:
- limit- the limit in terms of number of items returned
- Returns:
- this
- Throws:
- IllegalArgumentException- if the limit value is less than 0.
 
- 
getMaxReadKBpublic int getMaxReadKB()Returns the limit on the total data read during this operation, in KB. If not set by the application this value will be 0 which means no application-defined limit.- Returns:
- the limit, or 0 if not set
 
- 
setMaxReadKBSets the limit on the total data read during this operation, in KB. This value can only reduce the system defined limit. This limit is independent of read units consumed by the operation. It is recommended that for tables with relatively low provisioned read throughput that this limit be reduced to less than or equal to one half of the provisioned throughput in order to avoid or reduce throttling exceptions.- Parameters:
- maxReadKB- the limit in terms of number of KB read during this operation.
- Returns:
- this
- Throws:
- IllegalArgumentException- if the maxReadKB value is less than 0
 
- 
getMaxWriteKBpublic int getMaxWriteKB()Returns the limit on the total data written during this operation, in KB. If not set by the application this value will be 0 which means no application-defined limit.- Returns:
- the limit, or 0 if not set
 
- 
setMaxWriteKBSets the limit on the total data written during this operation, in KB. This limit is independent of write units consumed by the operation.- Parameters:
- maxWriteKB- the limit in terms of number of KB written during this operation.
- Returns:
- this
- Throws:
- IllegalArgumentException- if the maxWriteKB value is less than 0
 
- 
setMaxMemoryConsumptionSets 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. Such operations may consume a lot of memory as they need to cache the full result set or a large subset of it at the client memory. If the maximum amount of memory is exceeded, a exception will be throw.The default value is 1GB. - Parameters:
- maxBytes- the amount of memory to use, in bytes
- Returns:
- this
 
- 
getMaxMemoryConsumptionpublic long getMaxMemoryConsumption()Returns 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 (sorting by distance when a query contains a geo_near() function). Such operations may consume a lot of memory as they need to cache the full result set at the client memory.The default value is 1GB. - Returns:
- the maximum number of memory bytes
 
- 
getMathContext- Returns:
- the MathContext to use for the query
 
- 
setMathContext- Parameters:
- mathContext- the MathContext to use for the query
- Returns:
- this
 
- 
getStatementReturns the query statement- Returns:
- the statement, or null if it has not been set
 
- 
setStatementSets the query statement.- Parameters:
- statement- the query statement
- Returns:
- this
 
- 
getPreparedStatementReturns the prepared query statement- Returns:
- the statement, or null if it has not been set
 
- 
setPreparedStatementSets the prepared query statement.- Parameters:
- preparedStatement- the prepared query statement
- Returns:
- this
 
- 
setPreparedStatementA convenience method to set the prepared query statement from a PrepareResult- Parameters:
- prepareResult- the result of a prepare request
- Returns:
- this
 
- 
getContinuationKeyDeprecated.Returns the continuation key if set- Returns:
- the key
 
- 
setContinuationKeyDeprecated.There is no reason to use this method anymore, because setting the continuation key is now done internally.Sets the continuation key. This is used to continue an operation that returned this key in itsQueryResult.- Parameters:
- continuationKey- the key which should have been obtained from- QueryResult.getContinuationKey()
- Returns:
- this;
 
- 
isDonepublic boolean isDone()Returns true if the query execution is finished, i.e., there are no more query results to be generated. Otherwise false.- Returns:
- whether the query is execution is finished or not
 
- 
closepublic void close()Terminates the query execution and releases any memory consumed by the query at the driver. An application should use this method if it wishes to terminate query execution before retrieving all of the query results.- Specified by:
- closein interface- AutoCloseable
 
- 
setConsistencySets theConsistencyto use for the operation- Parameters:
- consistency- the Consistency
- Returns:
- this
 
- 
setDurabilitySets the durability to use for the operation. On-premises only. This setting only applies if the query modifies a row using an INSERT, UPSERT, or DELETE statement. If the query is read-only it is ignored.- Parameters:
- durability- the durability value. Set to null for the default durability setting on the server.
- Returns:
- this
- Since:
- 5.4.0
 
- 
getConsistencyReturns the consistency set for this request, or null if not set.- Returns:
- the consistency
 
- 
setTimeoutSets the request timeout value, in milliseconds. This overrides any default value set withNoSQLHandleConfig.setRequestTimeout(int). The value must be positive.- Parameters:
- timeoutMs- the timeout value, in milliseconds
- Returns:
- this
- Throws:
- IllegalArgumentException- if the timeout value is less than or equal to 0
 
- 
setNamespaceSets the optional namespace. On-premises only. This overrides any default value set withNoSQLHandleConfig.setDefaultNamespace(java.lang.String). Note: if a namespace is specified in the table name in the SQL statement (using the namespace:tablename format), that value will override this setting.- Parameters:
- namespace- the namespace to use for the operation
- Returns:
- this
- Since:
- 5.4.10
 
- 
getTimeoutpublic int getTimeout()Returns the timeout to use for the operation, in milliseconds. A value of 0 indicates that the timeout has not been set.- Returns:
- the value
 
- 
getTypeNameDescription copied from class:RequestReturns the type name of the request. This is used for stats.- Specified by:
- getTypeNamein class- Request
- Returns:
- the type name of the request
 
 
-