Class OracleDialect

All Implemented Interfaces:
Dialect

public class OracleDialect extends AnsiDialect
An SQL dialect for Oracle.
Since:
2.1
Author:
Jens Schauder, Mikahil Polivakha
  • Field Details

    • INSTANCE

      @Deprecated(forRemoval=true) public static final OracleDialect INSTANCE
      Deprecated, for removal: This API element is subject to removal in a future version.
      use either the org.springframework.data.r2dbc.dialect.OracleDialect or org.springframework.data.jdbc.core.dialect.JdbcOracleDialect.
      Singleton instance.
  • Constructor Details

    • OracleDialect

      protected OracleDialect()
  • Method Details

    • getIdGeneration

      public IdGeneration getIdGeneration()
      Description copied from interface: Dialect
      Returns the IdGeneration used for generating identifiers.
      Returns:
      the IdGeneration used for generating identifiers.
    • getConverters

      public Collection<Object> getConverters()
      Description copied from interface: Dialect
      Return a collection of converters for this dialect.
      Returns:
      a collection of converters for this dialect.
    • getUpsertRenderContext

      public UpsertRenderContext getUpsertRenderContext()
      Description copied from interface: Dialect
      Returns an UpsertRenderContext for single-statement upsert.
      Returns:
      the upsert render context, defaults to standard MERGE.