Uses of Class
org.jooq.SQLDialect
-
Packages that use SQLDialect Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.conf org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes.org.jooq.tools.jdbc Theorg.jooq.tools.jdbc
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 SQLDialect
Configuration. dialect()
Retrieve the configured dialect.SQLDialect
DAO. dialect()
TheSQLDialect
wrapped by this context.SQLDialect
Scope. dialect()
TheSQLDialect
wrapped by this context.static SQLDialect[]
SQLDialect. families()
Get a list of allfamily()
values.SQLDialect
Configuration. family()
Retrieve the family of the configured dialect.SQLDialect
DAO. family()
Thefamily()
wrapped by this context.SQLDialect
Scope. family()
Thefamily()
wrapped by this context.SQLDialect
SQLDialect. family()
The dialect family.SQLDialect
DataType. getDialect()
Retrieve the underlyingSQLDialect
.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 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 longerRenderContext
RenderContext. castModeSome(SQLDialect... dialects)
Deprecated.- [#3703] - 3.5.0 - Do not use this any longerConfiguration
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.Configuration
Configuration. set(SQLDialect newDialect)
Change this configuration to hold a new dialect.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)
Check whether this dialect supports any dialect from the argument collection. -
Uses of SQLDialect in org.jooq.conf
Fields in org.jooq.conf declared as SQLDialect Modifier and Type Field Description protected SQLDialect
Settings. parseDialect
Methods in org.jooq.conf that return SQLDialect Modifier and Type Method Description 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. setParseDialect(SQLDialect value)
Sets the value of the parseDialect property.Settings
Settings. withParseDialect(SQLDialect value)
-
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<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 DSLContext
DSL. using(Connection connection, SQLDialect dialect)
Create an executor with a connection and a dialect configured.static DSLContext
DSL. using(Connection connection, SQLDialect dialect, Settings settings)
Create an executor with a connection, a dialect and settings configured.static DSLContext
DSL. using(DataSource datasource, SQLDialect dialect)
Create an executor with a data source and a dialect configured.static DSLContext
DSL. using(DataSource datasource, SQLDialect dialect, Settings settings)
Create an executor with a data source, a dialect and settings configured.static DSLContext
DSL. using(ConnectionProvider connectionProvider, SQLDialect dialect)
Create an executor with a custom connection provider and a dialect configured.static DSLContext
DSL. using(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
Create an executor with a custom connection provider, a dialect and settings configured.static DSLContext
DSL. using(SQLDialect dialect)
Create an executor with a dialect configured.static 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 SQLDialect Constructor Description 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(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 SQLDialect Modifier and Type Method Description static SQLDialect
JDBCUtils. dialect(String url)
"Guess" theSQLDialect
from a connection URL.static 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)
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)
-