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(java.sql.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(java.sql.Connection connection,
Settings settings)
Create an executor with a connection, a dialect and settings configured.
|
static DSLContext |
DSL.using(java.sql.Connection connection,
SQLDialect dialect)
Create an executor with a connection and a dialect configured.
|
static DSLContext |
DSL.using(java.sql.Connection connection,
SQLDialect dialect,
Settings settings)
Create an executor with a connection, a dialect and settings configured.
|
static DSLContext |
DSL.using(javax.sql.DataSource datasource,
SQLDialect dialect)
Create an executor with a data source and a dialect configured.
|
static DSLContext |
DSL.using(javax.sql.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(java.lang.String url)
Create an executor from a JDBC connection URL.
|
static DSLContext |
DSL.using(java.lang.String url,
java.util.Properties properties)
Create an executor from a JDBC connection URL.
|
static DSLContext |
DSL.using(java.lang.String url,
java.lang.String username,
java.lang.String password)
Create an executor from a JDBC connection URL.
|
Modifier and Type | Method and Description |
---|---|
DSLContext |
MockConfiguration.dsl() |
Copyright © 2018. All Rights Reserved.