public interface CdsDataStore
| Modifier and Type | Method and Description |
|---|---|
Result |
execute(CqnDelete delete,
Iterable<Map<String,Object>> valueSets)
Executes a
CqnDelete statement as batch with the given named
parameter values. |
Result |
execute(CqnDelete delete,
Map<String,Object> namedValues)
Executes a
CqnDelete statement with named parameter values. |
Result |
execute(CqnDelete delete,
Object... paramValues)
Executes a
CqnDelete statement with optional positional parameter
values. |
Result |
execute(CqnInsert insert)
Executes a
CqnInsert statement. |
Result |
execute(CqnSelect select,
Map<String,Object> namedValues)
Executes a
CqnSelect statement with named parameter values. |
Result |
execute(CqnSelect select,
Object... paramValues)
Executes a
CqnSelect statement with optional positional parameter
values. |
Result |
execute(CqnUpdate update,
Iterable<Map<String,Object>> valueSets)
Executes a
CqnUpdate statement as batch with the given named
parameter values. |
Result |
execute(CqnUpdate update,
Map<String,Object> namedValues)
Executes a
CqnUpdate statement with named parameter values. |
Result |
execute(CqnUpdate update,
Object... paramValues)
Executes a
CqnUpdate statement with optional positional parameter
values. |
Result |
execute(CqnUpsert upsert)
Executes a
CqnUpsert statement. |
SessionContext |
getSessionContext() |
void |
setSessionContext(SessionContext session) |
Result execute(CqnSelect select, Object... paramValues)
CqnSelect statement with optional positional parameter
values.select - the CQN select statement to be executedparamValues - the positional parameter valuesResult of the queryResult execute(CqnSelect select, Map<String,Object> namedValues)
CqnSelect statement with named parameter values.select - the CQN select statement to be executednamedValues - the named parameter valuesResult of the queryResult execute(CqnInsert insert)
CqnInsert statement.insert - the CQN insert statement to be executedResult of the insertResult execute(CqnUpsert upsert)
CqnUpsert statement.upsert - the CQN upsert statement to be executedResult of the upsertResult execute(CqnUpdate update, Object... paramValues)
CqnUpdate statement with optional positional parameter
values.update - the CQN update statement to be executedparamValues - the positional parameter valuesResult of the updateResult execute(CqnUpdate update, Map<String,Object> namedValues)
CqnUpdate statement with named parameter values.update - the CQN update statement to be executednamedValues - the named parameter valuesResult of the updateResult execute(CqnUpdate update, Iterable<Map<String,Object>> valueSets)
CqnUpdate statement as batch with the given named
parameter values.update - the CQN update statement to be executedvalueSets - the named parameter value setsResult of the batch updateResult execute(CqnDelete delete, Object... paramValues)
CqnDelete statement with optional positional parameter
values.delete - the CQN delete statement to be executedparamValues - the positional parameter valuesResult of the deleteResult execute(CqnDelete delete, Map<String,Object> namedValues)
CqnDelete statement with named parameter values.delete - the CQN delete statement to be executednamedValues - the named parameter valuesResult of the deleteResult execute(CqnDelete delete, Iterable<Map<String,Object>> valueSets)
CqnDelete statement as batch with the given named
parameter values.delete - the CQN delete statement to be executedvalueSets - the named parameter value setsResult of the batch deleteSessionContext getSessionContext()
void setSessionContext(SessionContext session)
Copyright © 2020 SAP. All rights reserved.