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