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 ExecutionFutureKVStore. execute(char[] statement, ExecuteOptions options)Asynchronously executes a query (DDL or DML) statement.ExecutionFutureKVStore. execute(String statement, ExecuteOptions options)Asynchronously executes a query (DDL or DML) 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 aPreparedStatementor aBoundStatement.StatementResultKVStore. executeSync(char[] statement, ExecuteOptions options)Synchronously execute a table statement.StatementResultKVStore. executeSync(String statement, ExecuteOptions options)Synchronously execute a table statement.StatementResultKVStore. executeSync(Statement statement, ExecuteOptions options)Synchronously execute a table statement:PreparedStatementorBoundStatement. -
Uses of ExecuteOptions in oracle.kv.query
Methods in oracle.kv.query that return ExecuteOptions Modifier and Type Method Description ExecuteOptionsExecuteOptions. setConsistency(Consistency consistency)Sets the execution consistency.ExecuteOptionsExecuteOptions. setDurability(Durability durability)Sets the execution durability.ExecuteOptionsExecuteOptions. setMathContext(MathContext mathContext)ExecuteOptionsExecuteOptions. setMaxConcurrentRequests(int maxConcurrentRequests)Sets the maximum number of concurrent requests.ExecuteOptionsExecuteOptions. setNamespace(String namespace)Sets the namespace to use for the query.ExecuteOptionsExecuteOptions. setResultsBatchSize(int resultsBatchSize)Sets the number of results per request.ExecuteOptionsExecuteOptions. setTimeout(long timeout, TimeUnit timeoutUnit)Thetimeoutparameter is an upper bound on the time interval for processing the operation.
-