public interface SQLQueryDefinition
extends com.holonplatform.core.Expression
| Modifier and Type | Method and Description |
|---|---|
String |
getFrom()
Get the
FROM clause. |
Optional<String> |
getGroupBy()
Get the
GROUP BY clause. |
Optional<com.holonplatform.core.query.lock.LockMode> |
getLockMode()
Get the lock mode.
|
Optional<Long> |
getLockTimeout()
Get the lock timeout.
|
Optional<String> |
getOrderBy()
Get the
ORDER BY clause. |
Optional<SQLResultConverter<?>> |
getResultConverter()
Get the optional
SQLResultConverter. |
String |
getSelect()
Get the
SELECT clause. |
Optional<String> |
getWhere()
Get the
WHERE clause. |
boolean |
isDistinct()
Get whether to add the
DISTINCT clause. |
String getSelect()
SELECT clause.boolean isDistinct()
DISTINCT clause.DISTINCT clauseString getFrom()
FROM clause.Optional<String> getOrderBy()
ORDER BY clause.Optional<String> getGroupBy()
GROUP BY clause.Optional<com.holonplatform.core.query.lock.LockMode> getLockMode()
Optional<SQLResultConverter<?>> getResultConverter()
SQLResultConverter.Copyright © 2019 The Holon Platform. All rights reserved.