Uses of Enum Class
org.jooq.SQLDialect
Packages that use SQLDialect
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
This package contains compatibility classes to bridge between JDBC 4.0 and
JDBC 4.1.
-
Uses of SQLDialect in org.jooq
Methods in org.jooq that return SQLDialectModifier and TypeMethodDescription@NotNull SQLDialect
Configuration.dialect()
Retrieve the configured dialect.@NotNull SQLDialect
DAO.dialect()
TheSQLDialect
wrapped by this context.@NotNull SQLDialect
Scope.dialect()
TheSQLDialect
wrapped by this context.static @NotNull SQLDialect[]
SQLDialect.families()
Get a list of allfamily()
values.@NotNull SQLDialect
Configuration.family()
Retrieve the family of the configured dialect.@NotNull SQLDialect
DAO.family()
Thefamily()
wrapped by this context.@NotNull SQLDialect
Scope.family()
Thefamily()
wrapped by this context.@NotNull SQLDialect
SQLDialect.family()
The dialect family.@Nullable SQLDialect
DataType.getDialect()
Retrieve the underlyingSQLDialect
.@NotNull SQLDialect
ParseContext.parseDialect()
Convenient access toSettings.getParseDialect()
.@NotNull SQLDialect
ParseContext.parseFamily()
Convenient access toSettings.getParseDialect()
's family.@NotNull SQLDialect
SQLDialect.predecessor()
The predecessor dialect.static SQLDialect
Returns the enum constant of this class with the specified name.static SQLDialect[]
SQLDialect.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.jooq that return types with arguments of type SQLDialectModifier and TypeMethodDescription@NotNull Set<SQLDialect>
SQLDialect.predecessors()
The predecessor dialects.static @NotNull Set<SQLDialect>
SQLDialect.predecessors(SQLDialect... dialects)
Get a set of dialects preceding a given set of dialects.static @NotNull Set<SQLDialect>
SQLDialect.supportedBy(SQLDialect dialect)
Get a set of supported dialect versions and successors given a dialect version.static @NotNull Set<SQLDialect>
SQLDialect.supportedBy(SQLDialect... dialects)
Get a set of supported dialect versions and successors given a set of dialect versions.static @NotNull Set<SQLDialect>
SQLDialect.supportedUntil(SQLDialect dialect)
Get a set of supported dialect versions and predecessors given a dialect version.static @NotNull Set<SQLDialect>
SQLDialect.supportedUntil(SQLDialect... dialects)
Get a set of supported dialect versions and predecessors given a dialect version.Methods in org.jooq with parameters of type SQLDialectModifier and TypeMethodDescription@NotNull Configuration
Configuration.derive(SQLDialect newDialect)
Create a derived configuration from this one, with a new dialect.boolean
SQLDialect.precedes(SQLDialect other)
Whether this dialect precedes an other dialect from the same family.static @NotNull Set<SQLDialect>
SQLDialect.predecessors(SQLDialect... dialects)
Get a set of dialects preceding a given set of dialects.@NotNull Configuration
Configuration.set(SQLDialect newDialect)
Change this configuration to hold a new dialect.static @NotNull Set<SQLDialect>
SQLDialect.supportedBy(SQLDialect dialect)
Get a set of supported dialect versions and successors given a dialect version.static @NotNull Set<SQLDialect>
SQLDialect.supportedBy(SQLDialect... dialects)
Get a set of supported dialect versions and successors given a set of dialect versions.static @NotNull Set<SQLDialect>
SQLDialect.supportedUntil(SQLDialect dialect)
Get a set of supported dialect versions and predecessors given a dialect version.static @NotNull Set<SQLDialect>
SQLDialect.supportedUntil(SQLDialect... dialects)
Get a set of supported dialect versions and predecessors given a dialect version.boolean
SQLDialect.supports(SQLDialect other)
Check whether this dialect supports another one.Method parameters in org.jooq with type arguments of type SQLDialectModifier and TypeMethodDescriptionboolean
SQLDialect.supports(Collection<SQLDialect> other)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of SQLDialect in org.jooq.conf
Fields in org.jooq.conf declared as SQLDialectModifier and TypeFieldDescriptionprotected SQLDialect
Settings.interpreterDialect
protected SQLDialect
Settings.parseDialect
Methods in org.jooq.conf that return SQLDialectModifier and TypeMethodDescriptionSettings.getInterpreterDialect()
[#7337] The dialect that should be used to interpret SQL DDL statements.Settings.getParseDialect()
[#7337] The input dialect that should be chosen to disambiguate ambiguous SQL syntax.Methods in org.jooq.conf with parameters of type SQLDialectModifier and TypeMethodDescriptionSQLDialectAdapter.marshal(SQLDialect v)
void
Settings.setInterpreterDialect(SQLDialect value)
[#7337] The dialect that should be used to interpret SQL DDL statements.void
Settings.setParseDialect(SQLDialect value)
[#7337] The input dialect that should be chosen to disambiguate ambiguous SQL syntax.Settings.withInterpreterDialect(SQLDialect value)
[#7337] The dialect that should be used to interpret SQL DDL statements.Settings.withParseDialect(SQLDialect value)
[#7337] The input dialect that should be chosen to disambiguate ambiguous SQL syntax. -
Uses of SQLDialect in org.jooq.impl
Methods in org.jooq.impl that return SQLDialectModifier and TypeMethodDescriptionDAOImpl.dialect()
DefaultConfiguration.dialect()
DAOImpl.family()
DefaultConfiguration.family()
DefaultDataType.getDialect()
Methods in org.jooq.impl with parameters of type SQLDialectModifier and TypeMethodDescriptionDefaultConfiguration.derive(SQLDialect newDialect)
static DataType<?>
DefaultDataType.getDataType(SQLDialect dialect, int sqlType)
static <T> DataType<T>
DefaultDataType.getDataType(SQLDialect dialect, Class<T> type)
static <T> DataType<T>
DefaultDataType.getDataType(SQLDialect dialect, Class<T> type, DataType<T> fallbackDataType)
static DataType<?>
DefaultDataType.getDataType(SQLDialect dialect, String typeName)
static DataType<?>
DefaultDataType.getDataType(SQLDialect dialect, String t, int p, int s)
Convert a type name (using precision and scale) into a Java classstatic DataType<?>
DefaultDataType.getDataType(SQLDialect dialect, String t, int p, int s, boolean forceIntegerTypesOnZeroScaleDecimals)
Convert a type name (using precision and scale) into a Java classstatic DataType<?>
DefaultDataType.getDataType(SQLDialect dialect, SQLType sqlType)
DefaultDataType.getDefaultDataType(SQLDialect dialect, String typeName)
static Class<?>
DefaultDataType.getType(SQLDialect dialect, String t, int p, int s)
Convert a type name (using precision and scale) into a Java classDefaultConfiguration.set(SQLDialect newDialect)
void
DefaultConfiguration.setSQLDialect(SQLDialect newDialect)
static @NotNull DSLContext
DSL.using(io.r2dbc.spi.ConnectionFactory connectionFactory, SQLDialect dialect)
Create an executor with a custom R2DBC connection factory and a dialect configured.static @NotNull DSLContext
DSL.using(io.r2dbc.spi.ConnectionFactory connectionFactory, SQLDialect dialect, Settings settings)
Create an executor with a custom R2DBC connection factory, a dialect and settings configured.static @NotNull DSLContext
DSL.using(io.r2dbc.spi.Connection connection, SQLDialect dialect)
Create an executor with a custom R2DBC connection and a dialect configured.static @NotNull DSLContext
DSL.using(io.r2dbc.spi.Connection connection, SQLDialect dialect, Settings settings)
Create an executor with a custom R2DBC connection, a dialect and settings configured.static @NotNull DSLContext
DSL.using(Connection connection, SQLDialect dialect)
Create an executor with a connection and a dialect configured.static @NotNull DSLContext
DSL.using(Connection connection, SQLDialect dialect, Settings settings)
Create an executor with a connection, a dialect and settings configured.static @NotNull DSLContext
DSL.using(DataSource datasource, SQLDialect dialect)
Create an executor with a data source and a dialect configured.static @NotNull DSLContext
DSL.using(DataSource datasource, SQLDialect dialect, Settings settings)
Create an executor with a data source, a dialect and settings configured.static @NotNull DSLContext
DSL.using(ConnectionProvider connectionProvider, SQLDialect dialect)
Create an executor with a custom connection provider and a dialect configured.static @NotNull DSLContext
DSL.using(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
Create an executor with a custom connection provider, a dialect and settings configured.static @NotNull DSLContext
DSL.using(SQLDialect dialect)
Create an executor with a dialect configured.static @NotNull DSLContext
DSL.using(SQLDialect dialect, Settings settings)
Create an executor with a dialect and settings configured.Constructors in org.jooq.impl with parameters of type SQLDialectModifierConstructorDescriptionBuiltInDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName)
Constructor for dialect specific data types.BuiltInDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName, String castTypeName)
Constructor for dialect specific data types.DefaultCloseableDSLContext(io.r2dbc.spi.ConnectionFactory connectionFactory, SQLDialect dialect)
DefaultCloseableDSLContext(io.r2dbc.spi.ConnectionFactory connectionFactory, SQLDialect dialect, Settings settings)
DefaultCloseableDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect)
DefaultCloseableDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
DefaultDataType(SQLDialect dialect, Class<T> type, String typeName)
DefaultDataType(SQLDialect dialect, Class<T> type, String typeName, String castTypeName)
DefaultDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName)
DefaultDataType(SQLDialect dialect, DataType<T> sqlDataType, String typeName, String castTypeName)
DefaultDSLContext(io.r2dbc.spi.ConnectionFactory connectionFactory, SQLDialect dialect)
DefaultDSLContext(io.r2dbc.spi.ConnectionFactory connectionFactory, SQLDialect dialect, Settings settings)
DefaultDSLContext(Connection connection, SQLDialect dialect)
DefaultDSLContext(Connection connection, SQLDialect dialect, Settings settings)
DefaultDSLContext(DataSource datasource, SQLDialect dialect)
DefaultDSLContext(DataSource datasource, SQLDialect dialect, Settings settings)
DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect)
DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
DefaultDSLContext(SQLDialect dialect)
DefaultDSLContext(SQLDialect dialect, Settings settings)
-
Uses of SQLDialect in org.jooq.tools.jdbc
Methods in org.jooq.tools.jdbc that return SQLDialectModifier and TypeMethodDescriptionstatic @NotNull SQLDialect
JDBCUtils.dialect(io.r2dbc.spi.Connection connection)
"Guess" theSQLDialect
from an R2DBCConnection
instance.static @NotNull SQLDialect
JDBCUtils.dialect(io.r2dbc.spi.ConnectionFactory connection)
"Guess" theSQLDialect
from aConnectionFactory
instance.static @NotNull SQLDialect
"Guess" theSQLDialect
from a connection URL.static @NotNull SQLDialect
JDBCUtils.dialect(Connection connection)
"Guess" theSQLDialect
from aConnection
instance.MockConfiguration.dialect()
MockConfiguration.family()
Methods in org.jooq.tools.jdbc with parameters of type SQLDialectModifier and TypeMethodDescriptionMockConfiguration.derive(SQLDialect newDialect)
static @NotNull String
JDBCUtils.driver(SQLDialect dialect)
"Guess" the JDBC driver from aSQLDialect
.MockConfiguration.set(SQLDialect newDialect)
Constructors in org.jooq.tools.jdbc with parameters of type SQLDialectModifierConstructorDescriptionMockArray(SQLDialect dialect, T[] array, Class<? extends T[]> type)
supportedBy(SQLDialect...)
instead