Package | Description |
---|---|
org.clazzes.util.sql.dao |
Modifier and Type | Method and Description |
---|---|
protected int |
AbstrBasicDAO.deleteWithCondition(SQLCondition condition,
StatementPreparer preparer)
Delete all POJOs, matching the given SQLCondition, prepared with the given StatementPreparer.
|
protected long |
AbstrBasicDAO.getListSize(SQLCondition condition,
StatementPreparer preparer)
Detects the number of POJOs that match would be returned by getList().
|
protected List<T> |
AbstrBasicDAO.getListWithCondition(SQLCondition condition,
StatementPreparer preparer)
Returns a list of POJOs, matching the given SQLCondition, prepared with the given StatementPreparer.
|
protected List<T> |
AbstrBasicDAO.getSubList(SQLCondition condition,
StatementPreparer preparer,
SQLOrder[] orders,
int rowsToSkip,
int maxRows)
Returns a list of POJOs, matching the given SQLCondition, prepared with the given StatementPreparer.
|
protected T |
AbstrBasicDAO.getUniqueWithCondition(SQLCondition condition,
StatementPreparer preparer)
Returns a POJO, matching the given SQLCondition, prepared with the given StatementPreparer.
|
protected int |
AbstrBasicDAO.streamListWithCondition(IEntityConsumer<T> entityConsumer,
SQLCondition condition,
StatementPreparer preparer)
Stream a list of POJOs, matching the given SQLCondition, prepared with the given StatementPreparer.
|
protected int |
AbstrBasicDAO.streamSubList(IEntityConsumer<T> entityConsumer,
SQLCondition condition,
StatementPreparer preparer,
SQLOrder[] orders,
int rowsToSkip,
int maxRows)
Stream a list of POJOs, matching the given SQLCondition, prepared with the given StatementPreparer.
|
Copyright © 2017 Clazzes.org. All rights reserved.