Uses of Interface
org.jooq.DSLContext
Packages that use DSLContext
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
JDBC tooling.
- 
Uses of DSLContext in org.jooqSubinterfaces of DSLContext in org.jooqModifier and TypeInterfaceDescriptioninterfaceA resourcefulDSLContextthat should be closed in a try-with-resources statement.Methods in org.jooq that return DSLContextModifier and TypeMethodDescription@NotNull DSLContextConfiguration.dsl()Wrap thisConfigurationin aDSLContext, providing access to the configuration-contextual DSL to construct executable queries.@NotNull DSLContextScope.dsl()Wrap theScope.configuration()in aDSLContext, providing access to the configuration-contextual DSL to construct executable queries.
- 
Uses of DSLContext in org.jooq.implClasses in org.jooq.impl that implement DSLContextModifier and TypeClassDescriptionclassAn extension ofDefaultDSLContextthat implements also theCloseableDSLContextcontract.classA default implementation forDSLContext.Methods in org.jooq.impl that return DSLContextModifier and TypeMethodDescriptionDAOImpl.ctx()final DSLContextDefaultConfiguration.dsl()static @NotNull DSLContextDSL.using(io.r2dbc.spi.Connection connection) Create an executor with a custom R2DBC connection and guess the dialect.static @NotNull DSLContextDSL.using(io.r2dbc.spi.ConnectionFactory connectionFactory) Create an executor with a custom R2DBC connection factory and guess the dialect from it.static @NotNull DSLContextDSL.using(io.r2dbc.spi.ConnectionFactory connectionFactory, SQLDialect dialect) Create an executor with a custom R2DBC connection factory and a dialect configured.static @NotNull DSLContextDSL.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 DSLContextDSL.using(io.r2dbc.spi.Connection connection, SQLDialect dialect) Create an executor with a custom R2DBC connection and a dialect configured.static @NotNull DSLContextDSL.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 DSLContextDSL.using(Connection connection) Create an executor with a connection configured.static @NotNull DSLContextDSL.using(Connection connection, Settings settings) Create an executor with a connection, a dialect and settings configured.static @NotNull DSLContextDSL.using(Connection connection, SQLDialect dialect) Create an executor with a connection and a dialect configured.static @NotNull DSLContextDSL.using(Connection connection, SQLDialect dialect, Settings settings) Create an executor with a connection, a dialect and settings configured.static @NotNull DSLContextDSL.using(DataSource datasource, SQLDialect dialect) Create an executor with a data source and a dialect configured.static @NotNull DSLContextDSL.using(DataSource datasource, SQLDialect dialect, Settings settings) Create an executor with a data source, a dialect and settings configured.static @NotNull DSLContextDSL.using(Configuration configuration) Create an executor from a custom configuration.static @NotNull DSLContextDSL.using(ConnectionProvider connectionProvider, SQLDialect dialect) Create an executor with a custom connection provider and a dialect configured.static @NotNull DSLContextDSL.using(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings) Create an executor with a custom connection provider, a dialect and settings configured.static @NotNull DSLContextDSL.using(SQLDialect dialect) Create an executor with a dialect configured.static @NotNull DSLContextDSL.using(SQLDialect dialect, Settings settings) Create an executor with a dialect and settings configured.
- 
Uses of DSLContext in org.jooq.tools.jdbcMethods in org.jooq.tools.jdbc that return DSLContext