Interface JdbcDialect

All Superinterfaces:
org.springframework.data.relational.core.dialect.Dialect
All Known Implementing Classes:
JdbcDb2Dialect, JdbcH2Dialect, JdbcHsqlDbDialect, JdbcMariaDbDialect, JdbcMySqlDialect, JdbcOracleDialect, JdbcPostgresDialect, JdbcSqlServerDialect

public interface JdbcDialect extends org.springframework.data.relational.core.dialect.Dialect
ArrayColumns that offer JDBC specific functionality.
Since:
2.3
Author:
Jens Schauder, Mikhail Polivakha
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the JDBC specific array support object that describes how array-typed columns are supported by this dialect.
    getArraySupport(org.springframework.data.relational.core.dialect.Dialect dialect)
    Returns the array support for the given Dialect.

    Methods inherited from interface org.springframework.data.relational.core.dialect.Dialect

    getConverters, getExistsFunction, getIdentifierProcessing, getIdGeneration, getInsertRenderContext, getLikeEscaper, getSelectContext, limit, lock, orderByNullHandling, simpleTypes, supportsSingleQueryLoading
  • Method Details

    • getArraySupport

      default JdbcArrayColumns getArraySupport()
      Returns the JDBC specific array support object that describes how array-typed columns are supported by this dialect.
      Specified by:
      getArraySupport in interface org.springframework.data.relational.core.dialect.Dialect
      Returns:
      the JDBC specific array support object that describes how array-typed columns are supported by this dialect.
    • getArraySupport

      static JdbcArrayColumns getArraySupport(org.springframework.data.relational.core.dialect.Dialect dialect)
      Returns the array support for the given Dialect. Defaults to JdbcArrayColumns.Unsupported iff the dialect is not an instance of JdbcDialect.
      Parameters:
      dialect - the dialect to check for array support.
      Returns:
      the JdbcArrayColumns instance that describes how array-typed columns are supported by the dialect.
      Since:
      4.0