Interface JdbcDialect

All Superinterfaces:
Dialect
All Known Implementing Classes:
JdbcDb2Dialect, JdbcH2Dialect, JdbcHsqlDbDialect, JdbcMariaDbDialect, JdbcMySqlDialect, JdbcOracleDialect, JdbcPostgresDialect, JdbcSqlServerDialect

public interface JdbcDialect extends Dialect
ArrayColumns that offer JDBC specific functionality.
Since:
2.3
Author:
Jens Schauder, Mikhail Polivakha
  • 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 Dialect
      Returns:
      the JDBC specific array support object that describes how array-typed columns are supported by this dialect.
    • getArraySupport

      static JdbcArrayColumns getArraySupport(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