Uses of Class
com.couchbase.client.java.query.QueryResult
-
Packages that use QueryResult Package Description com.couchbase.client.java Holds all classes that are needed for the Couchbase Java SDK.com.couchbase.client.java.query Namespace for various query-service related classes.com.couchbase.client.java.transactions.internal -
-
Uses of QueryResult in com.couchbase.client.java
Methods in com.couchbase.client.java that return QueryResult Modifier and Type Method Description QueryResult
Cluster. query(String statement)
Performs a query against the query (N1QL) services.QueryResult
Cluster. query(String statement, QueryOptions options)
Performs a query against the query (N1QL) services with custom options.QueryResult
Scope. query(String statement)
Performs a N1QL query with defaultQueryOptions
in a ScopeQueryResult
Scope. query(String statement, QueryOptions options)
Performs a N1QL query with customQueryOptions
in a ScopeMethods in com.couchbase.client.java that return types with arguments of type QueryResult Modifier and Type Method Description CompletableFuture<QueryResult>
AsyncCluster. query(String statement)
Performs a N1QL query with defaultQueryOptions
.CompletableFuture<QueryResult>
AsyncCluster. query(String statement, QueryOptions options)
Performs a N1QL query with customQueryOptions
.CompletableFuture<QueryResult>
AsyncScope. query(String statement)
Performs a N1QL query with defaultQueryOptions
in a ScopeCompletableFuture<QueryResult>
AsyncScope. query(String statement, QueryOptions options)
Performs a N1QL query with customQueryOptions
in a Scope. -
Uses of QueryResult in com.couchbase.client.java.query
Methods in com.couchbase.client.java.query that return types with arguments of type QueryResult Modifier and Type Method Description CompletableFuture<QueryResult>
QueryAccessor. queryAsync(QueryRequest request, QueryOptions.Built options, JsonSerializer serializer)
Performs a N1QL query and returns the result as a future. -
Uses of QueryResult in com.couchbase.client.java.transactions.internal
Methods in com.couchbase.client.java.transactions.internal that return types with arguments of type QueryResult Modifier and Type Method Description static Mono<QueryResult>
SingleQueryTransactions. singleQueryTransactionBuffered(Core core, ClusterEnvironment environment, String statement, String bucketName, String scopeName, QueryOptions.Built opts)
-