Uses of Class
org.jooq.SQLDialect
-
Packages that use SQLDialect Package Description org.jooq This package contains jOOQ's public API.org.jooq.conf org.jooq.impl This package contains jOOQ's implementation classes.org.jooq.tools.jdbc 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 SQLDialect Modifier and Type Method Description @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
SQLDialect. predecessor()
The predecessor dialect.SQLDialect[]
value()
A list of jOOQSQLDialect
which are required on any jOOQ API method that is annotated withSupport
.SQLDialect[]
value()
A list of jOOQSQLDialect
which are required on any jOOQ API method that is annotated withSupport
.SQLDialect[]
value()
ASQLDialect
array containing all dialects that are supported by the API method annotated with this annotation.static SQLDialect
SQLDialect. valueOf(String name)
Returns the enum constant of this type with the specified name.static SQLDialect[]
SQLDialect. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jooq that return types with arguments of type SQLDialect Modifier and Type Method Description @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 SQLDialect Modifier and Type Method Description C
Context. castModeSome(SQLDialect... dialects)
Deprecated.- [#3703] - 3.5.0 - Do not use this any longer@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 SQLDialect Modifier and Type Method Description boolean
SQLDialect. supports(Collection<SQLDialect> other)
Deprecated.- [#9882] - 3.14.0 - UsesupportedBy(SQLDialect...)
instead -
Uses of SQLDialect in org.jooq.conf
Fields in org.jooq.conf declared as SQLDialect Modifier and Type Field Description protected SQLDialect
Settings. interpreterDialect
protected SQLDialect
Settings. parseDialect
Methods in org.jooq.conf that return SQLDialect Modifier and Type Method Description SQLDialect
Settings. getInterpreterDialect()
[#7337] The dialect that should be used to interpret SQL DDL statements.SQLDialect
Settings. getParseDialect()
[#7337] The input dialect that should be chosen to disambiguate ambiguous SQL syntax.SQLDialect
SQLDialectAdapter. unmarshal(String v)
Methods in org.jooq.conf with parameters of type SQLDialect Modifier and Type Method Description String
SQLDialectAdapter. 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
Settings. withInterpreterDialect(SQLDialect value)
[#7337] The dialect that should be used to interpret SQL DDL statements.Settings
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 SQLDialect Modifier and Type Method Description SQLDialect
DAOImpl. dialect()
SQLDialect
DefaultConfiguration. dialect()
SQLDialect
DAOImpl. family()
SQLDialect
DefaultConfiguration. family()
SQLDialect
DefaultDataType. getDialect()
Methods in org.jooq.impl with parameters of type SQLDialect Modifier and Type Method Description Configuration
DefaultConfiguration. derive(SQLDialect newDialect)
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<Object>
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 classConfiguration
DefaultConfiguration. set(SQLDialect newDialect)
void
DefaultConfiguration. setSQLDialect(SQLDialect newDialect)
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. -
Uses of SQLDialect in org.jooq.tools.jdbc
Methods in org.jooq.tools.jdbc that return SQLDialect Modifier and Type Method Description static @NotNull SQLDialect
JDBCUtils. dialect(String url)
"Guess" theSQLDialect
from a connection URL.static @NotNull SQLDialect
JDBCUtils. dialect(Connection connection)
"Guess" theSQLDialect
from aConnection
instance.SQLDialect
MockConfiguration. dialect()
SQLDialect
MockConfiguration. family()
Methods in org.jooq.tools.jdbc with parameters of type SQLDialect Modifier and Type Method Description Configuration
MockConfiguration. derive(SQLDialect newDialect)
static @NotNull String
JDBCUtils. driver(SQLDialect dialect)
"Guess" the JDBC driver from aSQLDialect
.Configuration
MockConfiguration. set(SQLDialect newDialect)
Constructors in org.jooq.tools.jdbc with parameters of type SQLDialect Constructor Description MockArray(SQLDialect dialect, T[] array, Class<? extends T[]> type)
-