public interface CouchbaseConnection extends Connection
Namespaces └── Keyspaces └──DocumentsA Keyspace is a set of JSON documents that may vary in structure, use a self-describing format, flexible Data Model, dynamic schemas. A
CouchbaseConnection
is a connection to a specific Couchbase Namespace,
build upon Couchbase N1QL, used to handle application-level operations
(SELECT/UPDATE/INSERT/DELETE) against the documents under a specific
Couchbase Namespace.Modifier and Type | Method and Description |
---|---|
com.couchbase.client.java.query.N1qlQueryResult |
execute(String statement)
Executes the given N1QL statement, which returns a single
N1qlQueryResult
object. |
String |
getNamespace()
Returns the name of the Namespace
|
close
String getNamespace()
com.couchbase.client.java.query.N1qlQueryResult execute(String statement) throws TranslatorException
N1qlQueryResult
object.statement
- Any N1QL statement, like Insert, Select, Update, Delete, etc.TranslatorException
Copyright © 2019. All rights reserved.