public class SQLiteDialect extends Object implements SQLDialect
SQLDialect.SQLDialect.LimitHandler| Constructor and Description |
|---|
SQLiteDialect() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
deleteStatementAliasSupported()
Get whether alias is supported in the DELETE clause.
|
boolean |
generatedKeyAlwaysReturned()
Retrieves whether a generated key will always be returned if the column name(s) or index(es) specified for the
auto generated key column(s) are valid and the statement succeeds.
|
Optional<SQLDialect.LimitHandler> |
getLimitHandler()
Get the
SQLDialect.LimitHandler |
void |
init(SQLDialectContext context)
Dialect initialization hook at parent datastore initialization.
|
Optional<SQLFunction> |
resolveFunction(com.holonplatform.core.query.QueryFunction<?,?> function)
Resolve given
function into a dialect-specific SQLFunction. |
boolean |
supportGetGeneratedKeyByName()
Retrieves whether auto-generated keys can be retrieved by name after a statement has been executed.
|
boolean |
supportsBinaryStreamParameter()
Get whether binary stream type parameters are supported.
|
boolean |
supportsGetGeneratedKeys()
Retrieves whether auto-generated keys can be retrieved after a statement has been executed.
|
boolean |
supportsLikeEscapeClause()
Retrieves whether this database supports specifying a
LIKE escape clause. |
boolean |
updateStatementAliasSupported()
Get whether alias is supported in the UPDATE clause.
|
boolean |
useOuterInJoins()
Get whether to use the
OUTER keyword in join serialization. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdb2, deleteStatementTargetRequired, derby, detect, getColumnName, getJavaType, getLockClause, getLockHint, getSqlType, getTableName, h2, HANA, hsqldb, informix, mariaDB, mySQL, oracle, postgreSQL, sqlite, sqlServer, supportsSqlType, translateException, updateStatementFromSupported, updateStatementSetAliasSupportedpublic void init(SQLDialectContext context) throws SQLException
SQLDialectinit in interface SQLDialectcontext - Dialect contextSQLException - An error occurred during dialect initializationpublic Optional<SQLFunction> resolveFunction(com.holonplatform.core.query.QueryFunction<?,?> function)
SQLDialectfunction into a dialect-specific SQLFunction.resolveFunction in interface SQLDialectfunction - The function to resolve (not null)public boolean updateStatementAliasSupported()
SQLDialectupdateStatementAliasSupported in interface SQLDialecttrue if alias is supported in the UPDATE clausepublic boolean supportsBinaryStreamParameter()
SQLDialectsupportsBinaryStreamParameter in interface SQLDialecttrue if binary stream type parameters are supportedpublic boolean supportsLikeEscapeClause()
SQLDialectLIKE escape clause.supportsLikeEscapeClause in interface SQLDialecttrue if so; false otherwisepublic boolean supportsGetGeneratedKeys()
SQLDialectsupportsGetGeneratedKeys in interface SQLDialecttrue if auto-generated keys can be retrieved after a statement has executed;
false otherwisepublic boolean generatedKeyAlwaysReturned()
SQLDialectgeneratedKeyAlwaysReturned in interface SQLDialecttrue if so; false otherwisepublic boolean useOuterInJoins()
SQLDialectOUTER keyword in join serialization.useOuterInJoins in interface SQLDialecttrue to use the OUTER keyword in join serializationpublic boolean deleteStatementAliasSupported()
SQLDialectdeleteStatementAliasSupported in interface SQLDialecttrue if alias is supported in the DELETE clausepublic boolean supportGetGeneratedKeyByName()
SQLDialectsupportGetGeneratedKeyByName in interface SQLDialecttrue if auto-generated keys can be retrieved by name after a statement has executedpublic Optional<SQLDialect.LimitHandler> getLimitHandler()
SQLDialectSQLDialect.LimitHandlergetLimitHandler in interface SQLDialectCopyright © 2019 The Holon Platform. All rights reserved.