Uses of Class
oracle.kv.query.ExecuteOptions
-
Packages that use ExecuteOptions Package Description oracle.kv This package contains the public API for using Oracle NoSQL Database.oracle.kv.query This package contains the majority of the public API for using Oracle NoSQL Database query language. -
-
Uses of ExecuteOptions in oracle.kv
Methods in oracle.kv with parameters of type ExecuteOptions Modifier and Type Method Description ExecutionFuture
KVStore. execute(char[] statement, ExecuteOptions options)
Asynchronously executes a DDL statement.ExecutionFuture
KVStore. execute(String statement, ExecuteOptions options)
Asynchronously executes a DDL statement, specifying options to override defaults.org.reactivestreams.Publisher<RecordValue>
KVStore. executeAsync(String statement, ExecuteOptions options)
Returns a publisher that can be used to subscribe to the results of the asynchronous execution of a table statement.org.reactivestreams.Publisher<RecordValue>
KVStore. executeAsync(Statement statement, ExecuteOptions options)
Returns a publisher that can be used to subscribe to the results of the asynchronous execution of a table statement, either aPreparedStatement
or aBoundStatement
.StatementResult
KVStore. executeSync(char[] statement, ExecuteOptions options)
Synchronously execute a table statement.StatementResult
KVStore. executeSync(String statement, ExecuteOptions options)
Synchronously execute a table statement.StatementResult
KVStore. executeSync(Statement statement, ExecuteOptions options)
Synchronously execute a table statement:PreparedStatement
orBoundStatement
. -
Uses of ExecuteOptions in oracle.kv.query
Methods in oracle.kv.query that return ExecuteOptions Modifier and Type Method Description ExecuteOptions
ExecuteOptions. setConsistency(Consistency consistency)
Sets the execution consistency.ExecuteOptions
ExecuteOptions. setDurability(Durability durability)
Sets the execution durability.ExecuteOptions
ExecuteOptions. setMathContext(MathContext mathContext)
ExecuteOptions
ExecuteOptions. setMaxConcurrentRequests(int maxConcurrentRequests)
Sets the maximum number of concurrent requests.ExecuteOptions
ExecuteOptions. setNamespace(String namespace)
Sets the namespace to use for the query.ExecuteOptions
ExecuteOptions. setResultsBatchSize(int resultsBatchSize)
Sets the number of results per request.ExecuteOptions
ExecuteOptions. setTimeout(long timeout, TimeUnit timeoutUnit)
Thetimeout
parameter is an upper bound on the time interval for processing the operation.
-