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. -
-
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.Methods 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
. -
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.
-