public interface KeyValueQueryParser
BucketManager.| Modifier and Type | Method and Description |
|---|---|
KeyValuePreparedStatement |
prepare(String query,
BucketManager manager)
Executes a query and returns a
KeyValuePreparedStatement, when the operations are insert, update and select
command it will return the result of the operation when the command is del it will return an empty collection. |
Stream<Value> |
query(String query,
BucketManager manager)
Executes a query and returns the result, when the operations are put, get and del
command it will return the result of the operation when the command is either put or del it will return an empty collection.
|
Stream<Value> query(String query, BucketManager manager)
query - the query as Stringmanager - the managerNullPointerException - when there is parameter nullIllegalArgumentException - when the query has value parametersQueryException - when there is error in the syntaxKeyValuePreparedStatement prepare(String query, BucketManager manager)
KeyValuePreparedStatement, when the operations are insert, update and select
command it will return the result of the operation when the command is del it will return an empty collection.query - the query as Stringmanager - the managerKeyValuePreparedStatement instanceNullPointerException - when there is parameter nullIllegalArgumentException - when the query has value parametersQueryException - when there is error in the syntaxCopyright © 2017–2022 Eclipse Foundation. All rights reserved.