| Modifier and Type | Method and Description |
|---|---|
String |
ISqlGenerator.createSql(ISqlGenerator.EStatementType eStatement,
Row aMeta,
IDBBackendQuery iQuery)
create a new SQL statement for the given set of parameters.
|
void |
IDBBackend.createTable(Row aMeta)
back end should create a new table.
|
void |
IDBBackend.deleteAllRows(Row aMeta)
must be overwritten by derived class to support deletion of
all entities (Means whole table of one entity type!)
|
String |
IDBBackend.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults)
must be overwritten by derived class to support get-all operation.
|
void |
IDBBackend.getRowById(Row aRow)
must be overwritten by derived class to support get-by-id operation.
|
String |
IDBBackend.queryRows(Row aMeta,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery)
must be overwritten by derived class to support generic queries.
|
void |
IDBBackend.removeTable(Row aMeta)
back end should remove an existing table.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IDBBackend.deleteRows(List<Row> lRows)
must be overwritten by derived class to support delete operation.
|
String |
IDBBackend.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults)
must be overwritten by derived class to support get-all operation.
|
void |
IDBBackend.insertRows(List<Row> lRows)
must be overwritten by derived class to support insert operation.
|
String |
IDBBackend.queryRows(Row aMeta,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery)
must be overwritten by derived class to support generic queries.
|
void |
IDBBackend.updateRows(List<Row> lRows)
must be overwritten by derived class to support update operation.
|
| Modifier and Type | Method and Description |
|---|---|
static Row |
EntityHelper.createRowFromEntity(EntityMetaInfo aMeta,
EntityBase aEntity) |
Row |
Row.newRow() |
| Modifier and Type | Method and Description |
|---|---|
static EntityBase |
EntityHelper.createEntityFromRow(EntityMetaInfo aMeta,
Row aRow) |
| Modifier and Type | Method and Description |
|---|---|
void |
CacheProvider.createTable(Row aRow) |
void |
CacheProvider.deleteAllRows(Row aRow) |
void |
CachedEntity.fromRow(Row aRow)
take over all values describing the real entity (not it's meta data!)
|
String |
CacheProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
CacheProvider.getRowById(Row aRow) |
String |
CacheProvider.queryRows(Row aMetaRow,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
CacheProvider.removeTable(Row aRow) |
void |
CachedEntity.toRow(Row aRow)
export all values (no meta data) from this cache item to the given row object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CacheProvider.deleteRows(List<Row> lRows) |
String |
CacheProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
CacheProvider.insertRows(List<Row> lRows) |
String |
CacheProvider.queryRows(Row aMetaRow,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
CacheProvider.updateRows(List<Row> lRows) |
| Modifier and Type | Method and Description |
|---|---|
void |
MongoDbProvider.createTable(Row aMeta) |
void |
MongoDbProvider.deleteAllRows(Row aRow) |
String |
MongoDbProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
MongoDbProvider.getRowById(Row aRow) |
String |
MongoDbProvider.queryRows(Row aMeta,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
MongoDbProvider.removeTable(Row aMeta) |
| Modifier and Type | Method and Description |
|---|---|
void |
MongoDbProvider.deleteRows(List<Row> lRows) |
String |
MongoDbProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
MongoDbProvider.insertRows(List<Row> lRows) |
String |
MongoDbProvider.queryRows(Row aMeta,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
MongoDbProvider.updateRows(List<Row> lRows) |
| Modifier and Type | Method and Description |
|---|---|
String |
SdbStatementGenerator.createSelectStatement(Row aMeta,
IDBBackendQuery iQuery) |
void |
SimpleDbProvider.createTable(Row aRow) |
void |
SimpleDbProvider.deleteAllRows(Row aRow) |
String |
SimpleDbProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
SimpleDbProvider.getRowById(Row aRow) |
String |
SimpleDbProvider.queryRows(Row aMetaRow,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
SimpleDbProvider.removeTable(Row aRow) |
| Modifier and Type | Method and Description |
|---|---|
void |
SimpleDbProvider.deleteRows(List<Row> lRows) |
String |
SimpleDbProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
SimpleDbProvider.insertRows(List<Row> lRows) |
String |
SimpleDbProvider.queryRows(Row aMetaRow,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
SimpleDbProvider.updateRows(List<Row> lRows) |
| Modifier and Type | Method and Description |
|---|---|
String |
SqlStatementCache.buildCacheId(ISqlGenerator.EStatementType eStatement,
Row aMeta,
IDBBackendQuery iQuery)
generate a new unique cache id for the given set of information.
|
void |
SqlProvider.createTable(Row aMeta) |
void |
SqlProvider.deleteAllRows(Row aRowInfo) |
String |
SqlProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
SqlProvider.getRowById(Row aRow) |
String |
SqlProvider.queryRows(Row aMetaRow,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
SqlProvider.removeTable(Row aMeta) |
| Modifier and Type | Method and Description |
|---|---|
void |
SqlProvider.deleteRows(List<Row> lRows) |
String |
SqlProvider.getAllRows(Row aMeta,
String sNextToken,
List<Row> lResults) |
void |
SqlProvider.insertRows(List<Row> lRows) |
String |
SqlProvider.queryRows(Row aMetaRow,
String sNextToken,
List<Row> lResults,
IDBBackendQuery iQuery) |
void |
SqlProvider.updateRows(List<Row> lRows) |
| Modifier and Type | Method and Description |
|---|---|
String |
AnsiSqlGenerator.createSql(ISqlGenerator.EStatementType eStatement,
Row aMeta,
IDBBackendQuery iQuery) |
Copyright © 2016 as-development.net. All rights reserved.