Interface SQLGenerationContext
public interface SQLGenerationContext
- Since:
- 4.2
-
Method Summary
Modifier and TypeMethodDescriptionList<PSParameter<?>> booleanReturns true if the statement being generated uses a single table, in which case table nodes and column nodes omit the table alias / prefix for readability (e.g.
-
Method Details
-
getAdapter
DbAdapter getAdapter() -
getBindings
List<PSParameter<?>> getBindings() -
getRootDbEntity
DbEntity getRootDbEntity() -
isSingleTableSQL
boolean isSingleTableSQL()Returns true if the statement being generated uses a single table, in which case table nodes and column nodes omit the table alias / prefix for readability (e.g.SELECT NAME FROM ARTISTrather thanSELECT a.NAME FROM ARTIST a).- Since:
- 5.0
-