| Modifier and Type | Method and Description |
|---|---|
boolean |
legacyLimit()
Returns whether the legacy LIMIT expression is used instead of the of the newer LIMIT/OFFSET.
|
void |
setLegacyLimit(boolean useLegacyLimit)
Sets the switch to use legacy LIMIT expression instead of the newer LIMIT/OFFSET expressions.
|
getBooleanFactory, getColumnsFactory, getDataTypeFactory, getDefinitionFactory, getLiteralFactory, getManipulationFactory, getModificationFactory, getQueryFactory, getTableReferenceFactory, toStringboolean legacyLimit()
Returns whether the legacy LIMIT expression is used instead of the of the newer LIMIT/OFFSET. In a legacy syntax,
the LIMIT <n> OFFSET <skip> is written as LIMIT <skip>, <n> instead. This method is not
thread-safe.
true if the legacy LIMIT expressions are used; false otherwise.void setLegacyLimit(boolean useLegacyLimit)
Sets the switch to use legacy LIMIT expression instead of the newer LIMIT/OFFSET expressions. In a legacy syntax,
the LIMIT <n> OFFSET <skip> is written as LIMIT <skip>, <n> instead. Set this to true only if
you really require it. This method is not thread-safe.
useLegacyLimit - Whether to use legacy LIMIT expression instead of the newer LIMIT/OFFSET expressions.Copyright © 2010-2012. All Rights Reserved.