public interface CouchbaseConnection
extends javax.resource.cci.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
|
String getNamespace()
com.couchbase.client.java.query.N1qlQueryResult execute(String statement) throws javax.resource.ResourceException
N1qlQueryResult
object.statement
- Any N1QL statement, like Insert, Select, Update, Delete, etc.javax.resource.ResourceException
Copyright © 2018 JBoss by Red Hat. All rights reserved.