Uses of Interface
org.jooq.DSLContext
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
JDBC tooling.
-
Uses of DSLContext in org.jooq
Modifier and TypeInterfaceDescriptioninterface
A resourcefulDSLContext
that should be closed in a try-with-resources statement.Modifier and TypeMethodDescription@NotNull DSLContext
Configuration.dsl()
Wrap thisConfiguration
in aDSLContext
, providing access to the configuration-contextual DSL to construct executable queries.@NotNull DSLContext
Scope.dsl()
Wrap theScope.configuration()
in aDSLContext
, providing access to the configuration-contextual DSL to construct executable queries. -
Uses of DSLContext in org.jooq.impl
Modifier and TypeClassDescriptionclass
An extension ofDefaultDSLContext
that implements also theCloseableDSLContext
contract.class
A default implementation forDSLContext
.Modifier and TypeMethodDescriptionDAOImpl.ctx()
final DSLContext
DefaultConfiguration.dsl()
static @NotNull DSLContext
DSL.using
(io.r2dbc.spi.Connection connection) Create an executor with a custom R2DBC connection and guess the dialect.static @NotNull DSLContext
DSL.using
(io.r2dbc.spi.ConnectionFactory connectionFactory) Create an executor with a custom R2DBC connection factory and guess the dialect from it.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) Create an executor with a connection configured.static @NotNull DSLContext
DSL.using
(Connection connection, Settings settings) Create an executor with a 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
(Configuration configuration) Create an executor from a custom configuration.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 DSLContext in org.jooq.tools.jdbc