Class HsqlDbDialect
java.lang.Object
org.springframework.data.relational.core.dialect.AbstractDialect
org.springframework.data.relational.core.dialect.HsqlDbDialect
- All Implemented Interfaces:
Dialect
A
Dialect for HsqlDb.- Author:
- Jens Schauder, Myeonghyeon Lee, Mikhail Polivakha
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final HsqlDbDialectDeprecated, for removal: This API element is subject to removal in a future version. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns theIdGenerationused for generating identifiers.limit()Return theLimitClauseused by this dialect.lock()Return theLockClauseused by this dialect.booleanReturn whether the dialect supports single query loading.Methods inherited from class AbstractDialect
getAfterFromTable, getAfterOrderBy, getSelectContextMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Dialect
getArraySupport, getConverters, getExistsFunction, getIdentifierProcessing, getInsertRenderContext, getLikeEscaper, getName, getUpsertRenderContext, orderByNullHandling, simpleTypes
-
Field Details
-
INSTANCE
Deprecated, for removal: This API element is subject to removal in a future version.use theorg.springframework.data.jdbc.core.dialect.JdbcHsqlDbDialectdirectly.
-
-
Constructor Details
-
HsqlDbDialect
protected HsqlDbDialect()
-
-
Method Details
-
lock
Description copied from interface:DialectReturn theLockClauseused by this dialect.- Returns:
- the
LockClauseused by this dialect.
-
supportsSingleQueryLoading
public boolean supportsSingleQueryLoading()Description copied from interface:DialectReturn whether the dialect supports single query loading.- Returns:
- true if the dialect supports single query loading; false otherwise.
-
limit
Description copied from interface:DialectReturn theLimitClauseused by this dialect.- Returns:
- the
LimitClauseused by this dialect.
-
getIdGeneration
Description copied from interface:DialectReturns theIdGenerationused for generating identifiers.- Returns:
- the
IdGenerationused for generating identifiers.
-
org.springframework.data.jdbc.core.dialect.JdbcHsqlDbDialectdirectly.