Class OracleDialect
java.lang.Object
org.springframework.data.relational.core.dialect.AbstractDialect
org.springframework.data.relational.core.dialect.AnsiDialect
org.springframework.data.relational.core.dialect.OracleDialect
- All Implemented Interfaces:
Dialect
An SQL dialect for Oracle.
- Since:
- 2.1
- Author:
- Jens Schauder, Mikahil Polivakha
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final OracleDialectDeprecated, for removal: This API element is subject to removal in a future version. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturn a collection of converters for this dialect.Returns theIdGenerationused for generating identifiers.Returns anUpsertRenderContextfor single-statement upsert.Methods inherited from class AnsiDialect
getArraySupport, limit, lockMethods 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
getExistsFunction, getIdentifierProcessing, getInsertRenderContext, getLikeEscaper, getName, orderByNullHandling, simpleTypes, supportsSingleQueryLoading
-
Field Details
-
INSTANCE
Deprecated, for removal: This API element is subject to removal in a future version.use either theorg.springframework.data.r2dbc.dialect.OracleDialectororg.springframework.data.jdbc.core.dialect.JdbcOracleDialect.Singleton instance.
-
-
Constructor Details
-
OracleDialect
protected OracleDialect()
-
-
Method Details
-
getIdGeneration
Description copied from interface:DialectReturns theIdGenerationused for generating identifiers.- Returns:
- the
IdGenerationused for generating identifiers.
-
getConverters
Description copied from interface:DialectReturn a collection of converters for this dialect.- Returns:
- a collection of converters for this dialect.
-
getUpsertRenderContext
Description copied from interface:DialectReturns anUpsertRenderContextfor single-statement upsert.- Returns:
- the upsert render context, defaults to standard
MERGE.
-
org.springframework.data.r2dbc.dialect.OracleDialectororg.springframework.data.jdbc.core.dialect.JdbcOracleDialect.