Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
org.jooq.tools.jdbc |
The
org.jooq.tools.jdbc package contains compatibility classes
to bridge between JDBC 4.0 and JDBC 4.1. |
Modifier and Type | Method and Description |
---|---|
DSLContext |
Scope.dsl()
Wrap the
Scope.configuration() in a DSLContext , providing
access to the configuration-contextual DSL to construct executable
queries. |
DSLContext |
Configuration.dsl()
Wrap this
Configuration in a DSLContext , providing
access to the configuration-contextual DSL to construct executable
queries. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultDSLContext
A default implementation for
DSLContext . |
Modifier and Type | Method and Description |
---|---|
DSLContext |
DefaultConfiguration.dsl() |
static DSLContext |
DSL.using(Configuration configuration)
Create an executor from a custom configuration.
|
static DSLContext |
DSL.using(Connection connection)
Create an executor with a connection 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(Connection connection,
Settings settings)
Create an executor with a connection, a dialect and settings configured.
|
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(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.
|
static DSLContext |
DSL.using(String url)
Create an executor from a JDBC connection URL.
|
static DSLContext |
DSL.using(String url,
Properties properties)
Create an executor from a JDBC connection URL.
|
static DSLContext |
DSL.using(String url,
String username,
String password)
Create an executor from a JDBC connection URL.
|
Modifier and Type | Method and Description |
---|---|
DSLContext |
MockConfiguration.dsl() |
Copyright © 2019. All rights reserved.