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.
|
Modifier and Type | Method and Description |
---|---|
QueryResult |
Scope.query(String statement)
Performs a N1QL query with default
QueryOptions in a Scope |
QueryResult |
Cluster.query(String statement)
Performs a query against the query (N1QL) services.
|
QueryResult |
Scope.query(String statement,
QueryOptions options)
Performs a N1QL query with custom
QueryOptions in a Scope |
QueryResult |
Cluster.query(String statement,
QueryOptions options)
Performs a query against the query (N1QL) services with custom options.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<QueryResult> |
AsyncScope.query(String statement)
Performs a N1QL query with default
QueryOptions in a Scope |
CompletableFuture<QueryResult> |
AsyncCluster.query(String statement)
Performs a N1QL query with default
QueryOptions . |
CompletableFuture<QueryResult> |
AsyncScope.query(String statement,
QueryOptions options)
Performs a N1QL query with custom
QueryOptions in a Scope. |
CompletableFuture<QueryResult> |
AsyncCluster.query(String statement,
QueryOptions options)
Performs a N1QL query with custom
QueryOptions . |
Modifier and Type | Method and Description |
---|---|
CompletableFuture<QueryResult> |
QueryAccessor.queryAsync(QueryRequest request,
QueryOptions.Built options,
JsonSerializer serializer)
Performs a N1QL query and returns the result as a future.
|
Copyright © 2020 Couchbase, Inc.. All rights reserved.