- java.lang.Object
-
- org.jooq.impl.DefaultDSLContext
-
- All Implemented Interfaces:
Serializable
,AutoCloseable
,DSLContext
,Scope
public class DefaultDSLContext extends Object implements DSLContext, Serializable
A default implementation forDSLContext
.You may use this as a base implementation for custom
DSLContext
subtypes preventing potential API breakage when upgrading jOOQ, or to delegate DSL method calls to your custom implementations.- Author:
- Lukas Eder
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description 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(Configuration configuration)
DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect)
DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
DefaultDSLContext(SQLDialect dialect)
DefaultDSLContext(SQLDialect dialect, Settings settings)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AlterIndexOnStep
alterIndex(String index)
Create a new DSLALTER INDEX
statement.AlterIndexOnStep
alterIndex(Index index)
Create a new DSLALTER INDEX
statement.AlterIndexOnStep
alterIndex(Name index)
Create a new DSLALTER INDEX
statement.AlterIndexStep
alterIndexIfExists(String index)
Create a new DSLALTER INDEX
statement.AlterIndexStep
alterIndexIfExists(Index index)
Create a new DSLALTER INDEX
statement.AlterIndexStep
alterIndexIfExists(Name index)
Create a new DSLALTER INDEX
statement.AlterSchemaStep
alterSchema(String schema)
Create a new DSLALTER SCHEMA
statement.AlterSchemaStep
alterSchema(Name schema)
Create a new DSLALTER SCHEMA
statement.AlterSchemaStep
alterSchema(Schema schema)
Create a new DSLALTER SCHEMA
statement.AlterSchemaStep
alterSchemaIfExists(String schema)
Create a new DSLALTER SCHEMA
statement.AlterSchemaStep
alterSchemaIfExists(Name schema)
Create a new DSLALTER SCHEMA
statement.AlterSchemaStep
alterSchemaIfExists(Schema schema)
Create a new DSLALTER SCHEMA
statement.AlterSequenceStep<BigInteger>
alterSequence(String sequence)
Create a new DSLALTER SEQUENCE
statement.AlterSequenceStep<BigInteger>
alterSequence(Name sequence)
Create a new DSLALTER SEQUENCE
statement.<T extends Number>
AlterSequenceStep<T>alterSequence(Sequence<T> sequence)
Create a new DSLALTER SEQUENCE
statement.AlterSequenceStep<BigInteger>
alterSequenceIfExists(String sequence)
Create a new DSLALTER SEQUENCE
statement.AlterSequenceStep<BigInteger>
alterSequenceIfExists(Name sequence)
Create a new DSLALTER SEQUENCE
statement.<T extends Number>
AlterSequenceStep<T>alterSequenceIfExists(Sequence<T> sequence)
Create a new DSLALTER SEQUENCE
statement.AlterTableStep
alterTable(String table)
Create a new DSLALTER TABLE
statement.AlterTableStep
alterTable(Name table)
Create a new DSLALTER TABLE
statement.AlterTableStep
alterTable(Table<?> table)
Create a new DSLALTER TABLE
statement.AlterTableStep
alterTableIfExists(String table)
Create a new DSLALTER TABLE
statement.AlterTableStep
alterTableIfExists(Name table)
Create a new DSLALTER TABLE
statement.AlterTableStep
alterTableIfExists(Table<?> table)
Create a new DSLALTER TABLE
statement.AlterTypeStep
alterType(String type)
Create a new DSLALTER TYPE
statement.AlterTypeStep
alterType(Name type)
Create a new DSLALTER TYPE
statement.AlterViewStep
alterView(String table)
Create a new DSLALTER VIEW
statement.AlterViewStep
alterView(Name table)
Create a new DSLALTER VIEW
statement.AlterViewStep
alterView(Table<?> table)
Create a new DSLALTER VIEW
statement.AlterViewStep
alterViewIfExists(String table)
Create a new DSLALTER VIEW
statement.AlterViewStep
alterViewIfExists(Name table)
Create a new DSLALTER VIEW
statement.AlterViewStep
alterViewIfExists(Table<?> table)
Create a new DSLALTER VIEW
statement.void
attach(Collection<? extends Attachable> attachables)
Attach thisDSLContext
's underlyingScope.configuration()
to some attachables.void
attach(Attachable... attachables)
Attach thisDSLContext
's underlyingScope.configuration()
to some attachables.BatchBindStep
batch(String sql)
Create a batch statement to execute a set of queries in batch mode (with bind values).Batch
batch(String... queries)
Create a batch statement to execute a set of queries in batch mode (without bind values).Batch
batch(String sql, Object[]... bindings)
Create a batch statement to execute a set of queries in batch mode (with bind values).Batch
batch(Collection<? extends Query> queries)
Create a batch statement to execute a set of queries in batch mode (without bind values).Batch
batch(Queries queries)
Create a batch statement to execute a set of queries in batch mode (without bind values).BatchBindStep
batch(Query query)
Create a batch statement to execute a set of queries in batch mode (with bind values).Batch
batch(Query... queries)
Create a batch statement to execute a set of queries in batch mode (without bind values).Batch
batch(Query query, Object[]... bindings)
Create a batch statement to execute a set of queries in batch mode (with bind values).Batch
batchDelete(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according toUpdatableRecord.delete()
sematics.Batch
batchDelete(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according toUpdatableRecord.delete()
sematics.Batch
batchInsert(Collection<? extends TableRecord<?>> records)
Create a batch statement to execute a set ofINSERT
queries in batch mode (with bind values) according toTableRecord.insert()
semantics.Batch
batchInsert(TableRecord<?>... records)
Create a batch statement to execute a set ofINSERT
queries in batch mode (with bind values) according toTableRecord.insert()
semantics.Batch
batchStore(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofINSERT
andUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.store()
semantics.Batch
batchStore(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofINSERT
andUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.store()
semantics.Batch
batchUpdate(Collection<? extends UpdatableRecord<?>> records)
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.update()
semantics.Batch
batchUpdate(UpdatableRecord<?>... records)
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.update()
semantics.Block
begin(Collection<? extends Statement> statements)
Wrap a collection of statements in an anoymous procedural block.Block
begin(Statement... statements)
Wrap a collection of statements in an anonymous procedural block.int
bind(QueryPart part, PreparedStatement stmt)
Deprecated.BindContext
bindContext(PreparedStatement stmt)
Get a newBindContext
for the context of thisDSLContext
.void
close()
Close the underlying resources, if any resources have been allocated when constructing thisDSLContext
.CommentOnIsStep
commentOnColumn(Field<?> field)
Create a new DSLCOMMENT ON COLUMN
statement.CommentOnIsStep
commentOnColumn(Name columnName)
Create a new DSLCOMMENT ON COLUMN
statement.CommentOnIsStep
commentOnTable(String tableName)
Create a new DSLCOMMENT ON TABLE
statement.CommentOnIsStep
commentOnTable(Name tableName)
Create a new DSLCOMMENT ON TABLE
statement.CommentOnIsStep
commentOnTable(Table<?> table)
Create a new DSLCOMMENT ON TABLE
statement.CommentOnIsStep
commentOnView(String viewName)
Create a new DSLCOMMENT ON VIEW
statement.CommentOnIsStep
commentOnView(Name viewName)
Create a new DSLCOMMENT ON VIEW
statement.CommentOnIsStep
commentOnView(Table<?> view)
Create a new DSLCOMMENT ON VIEW
statement.Configuration
configuration()
The configuration of the current scope.void
connection(ConnectionRunnable runnable)
Run aConnectionRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.connectionProvider()
.<T> T
connectionResult(ConnectionCallable<T> callable)
Run aConnectionCallable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.connectionProvider()
.CreateTableColumnStep
createGlobalTemporaryTable(String table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.CreateTableColumnStep
createGlobalTemporaryTable(Name table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.CreateTableColumnStep
createGlobalTemporaryTable(Table<?> table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.CreateIndexStep
createIndex()
Create a new DSLCREATE INDEX
statement.CreateIndexStep
createIndex(String index)
Create a new DSLCREATE INDEX
statement.CreateIndexStep
createIndex(Index index)
Create a new DSLCREATE INDEX
statement.CreateIndexStep
createIndex(Name index)
Create a new DSLCREATE INDEX
statement.CreateIndexStep
createIndexIfNotExists(String index)
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.CreateIndexStep
createIndexIfNotExists(Index index)
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.CreateIndexStep
createIndexIfNotExists(Name index)
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.CreateViewAsStep<Record>
createOrReplaceView(String view, String... fields)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(String view, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(String view, Function<? super Field<?>,? extends String> fieldNameFunction)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(Name view, BiFunction<? super Field<?>,? super Integer,? extends Name> fieldNameFunction)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(Name view, Function<? super Field<?>,? extends Name> fieldNameFunction)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(Name view, Name... fields)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateViewAsStep<Record>
createOrReplaceView(Table<?> view, Field<?>... fields)
Create a new DSLCREATE OR REPLACE VIEW
statement.CreateSchemaFinalStep
createSchema(String schema)
Create a new DSLCREATE SCHEMA
statement.CreateSchemaFinalStep
createSchema(Name schema)
Create a new DSLCREATE SCHEMA
statement.CreateSchemaFinalStep
createSchema(Schema schema)
Create a new DSLCREATE SCHEMA
statement.CreateSchemaFinalStep
createSchemaIfNotExists(String schema)
Create a new DSLCREATE SCHEMA
statement.CreateSchemaFinalStep
createSchemaIfNotExists(Name schema)
Create a new DSLCREATE SCHEMA
statement.CreateSchemaFinalStep
createSchemaIfNotExists(Schema schema)
Create a new DSLCREATE SCHEMA
statement.CreateSequenceFlagsStep
createSequence(String sequence)
Create a new DSLCREATE SEQUENCE
statement.CreateSequenceFlagsStep
createSequence(Name sequence)
Create a new DSLCREATE SEQUENCE
statement.CreateSequenceFlagsStep
createSequence(Sequence<?> sequence)
Create a new DSLCREATE SEQUENCE
statement.CreateSequenceFlagsStep
createSequenceIfNotExists(String sequence)
Create a new DSLCREATE SEQUENCE
statement.CreateSequenceFlagsStep
createSequenceIfNotExists(Name sequence)
Create a new DSLCREATE SEQUENCE
statement.CreateSequenceFlagsStep
createSequenceIfNotExists(Sequence<?> sequence)
Create a new DSLCREATE SEQUENCE
statement.CreateTableColumnStep
createTable(String table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
createTable(Name table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
createTable(Table<?> table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
createTableIfNotExists(String table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
createTableIfNotExists(Name table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
createTableIfNotExists(Table<?> table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
createTemporaryTable(String table)
Create a new DSLCREATE TEMPORARY TABLE
statement.CreateTableColumnStep
createTemporaryTable(Name table)
Create a new DSLCREATE TEMPORARY TABLE
statement.CreateTableColumnStep
createTemporaryTable(Table<?> table)
Create a new DSLCREATE TEMPORARY TABLE
statement.CreateTableColumnStep
createTemporaryTableIfNotExists(String table)
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.CreateTableColumnStep
createTemporaryTableIfNotExists(Name table)
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.CreateTableColumnStep
createTemporaryTableIfNotExists(Table<?> table)
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.CreateTypeStep
createType(String type)
Create a new DSLCREATE TYPE
statement.CreateTypeStep
createType(Name type)
Create a new DSLCREATE TYPE
statement.CreateIndexStep
createUniqueIndex()
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
createUniqueIndex(String index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
createUniqueIndex(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
createUniqueIndex(Name index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
createUniqueIndexIfNotExists(String index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
createUniqueIndexIfNotExists(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
createUniqueIndexIfNotExists(Name index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateViewAsStep<Record>
createView(String view, String... fields)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(String view, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(String view, Function<? super Field<?>,? extends String> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(Name view, BiFunction<? super Field<?>,? super Integer,? extends Name> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(Name view, Function<? super Field<?>,? extends Name> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(Name view, Name... fields)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createView(Table<?> view, Field<?>... fields)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(String view, String... fields)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(String view, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(String view, Function<? super Field<?>,? extends String> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(Name view, BiFunction<? super Field<?>,? super Integer,? extends Name> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(Name view, Function<? super Field<?>,? extends Name> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(Name view, Name... fields)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)
Create a new DSLCREATE VIEW
statement.CreateViewAsStep<Record>
createViewIfNotExists(Table<?> view, Field<?>... fields)
Create a new DSLCREATE VIEW
statement.BigInteger
currval(String sequence)
Convenience method to fetch the CURRVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.BigInteger
currval(Name sequence)
Convenience method to fetch the CURRVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.<T extends Number>
Tcurrval(Sequence<T> sequence)
Convenience method to fetch the CURRVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.Map<Object,Object>
data()
Get all custom data from thisScope
.Object
data(Object key)
Get some custom data from thisScope
.Object
data(Object key, Object value)
Set some custom data to thisScope
.Queries
ddl(Collection<? extends Table<?>> tables)
Convenience method forMeta.ddl()
.Queries
ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration exportConfiguration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Catalog catalog)
Convenience method forMeta.ddl()
.Queries
ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Catalog catalog, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Schema schema)
Convenience method forMeta.ddl()
.Queries
ddl(Schema schema, DDLExportConfiguration exportConfiguration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Schema schema, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Table... tables)
Convenience method forMeta.ddl()
.Queries
ddl(Table[] tables, DDLExportConfiguration exportConfiguration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Table[] tables, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Table<?> table)
Convenience method forMeta.ddl()
.Queries
ddl(Table<?> table, DDLExportConfiguration exportConfiguration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
ddl(Table<?> table, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.<R extends Record>
DeleteUsingStep<R>delete(Table<R> table)
Create a new DSL delete statement.<R extends Record>
DeleteUsingStep<R>deleteFrom(Table<R> table)
Create a new DSL delete statement.<R extends Record>
DeleteQuery<R>deleteQuery(Table<R> table)
Create a newDeleteQuery
Connection
diagnosticsConnection()
A JDBC connection that proxies the underlying connection to run the jOOQ Diagnostics Pack on executed queries.DataSource
diagnosticsDataSource()
A JDBC connection that proxies the underlying connection to run the jOOQ Diagnostics Pack on executed queries.SQLDialect
dialect()
TheSQLDialect
wrapped by this context.DropIndexOnStep
dropIndex(String index)
Create a new DSLDROP INDEX
statement.DropIndexOnStep
dropIndex(Index index)
Create a new DSLDROP INDEX
statement.DropIndexOnStep
dropIndex(Name index)
Create a new DSLDROP INDEX
statement.DropIndexOnStep
dropIndexIfExists(String index)
Create a new DSLDROP INDEX IF EXISTS
statement.DropIndexOnStep
dropIndexIfExists(Index index)
Create a new DSLDROP INDEX IF EXISTS
statement.DropIndexOnStep
dropIndexIfExists(Name index)
Create a new DSLDROP INDEX IF EXISTS
statement.DropSchemaStep
dropSchema(String schema)
Create a new DSLDROP SCHEMA
statement.DropSchemaStep
dropSchema(Name schema)
Create a new DSLDROP SCHEMA
statement.DropSchemaStep
dropSchema(Schema schema)
Create a new DSLDROP SCHEMA
statement.DropSchemaStep
dropSchemaIfExists(String schema)
Create a new DSLDROP SCHEMA
statement.DropSchemaStep
dropSchemaIfExists(Name schema)
Create a new DSLDROP SCHEMA
statement.DropSchemaStep
dropSchemaIfExists(Schema schema)
Create a new DSLDROP SCHEMA
statement.DropSequenceFinalStep
dropSequence(String sequence)
Create a new DSLDROP SEQUENCE
statement.DropSequenceFinalStep
dropSequence(Name sequence)
Create a new DSLDROP SEQUENCE
statement.DropSequenceFinalStep
dropSequence(Sequence<?> sequence)
Create a new DSLDROP SEQUENCE
statement.DropSequenceFinalStep
dropSequenceIfExists(String sequence)
Create a new DSLDROP SEQUENCE IF EXISTS
statement.DropSequenceFinalStep
dropSequenceIfExists(Name sequence)
Create a new DSLDROP SEQUENCE IF EXISTS
statement.DropSequenceFinalStep
dropSequenceIfExists(Sequence<?> sequence)
Create a new DSLDROP SEQUENCE IF EXISTS
statement.DropTableStep
dropTable(String table)
Create a new DSLDROP TABLE
statement.DropTableStep
dropTable(Name table)
Create a new DSLDROP TABLE
statement.DropTableStep
dropTable(Table<?> table)
Create a new DSLDROP TABLE
statement.DropTableStep
dropTableIfExists(String table)
Create a new DSLDROP TABLE IF EXISTS
statement.DropTableStep
dropTableIfExists(Name table)
Create a new DSLDROP TABLE IF EXISTS
statement.DropTableStep
dropTableIfExists(Table<?> table)
Create a new DSLDROP TABLE IF EXISTS
statement.DropTableStep
dropTemporaryTable(String table)
Create a new DSLDROP TEMPORARY TABLE
statement.DropTableStep
dropTemporaryTable(Name table)
Create a new DSLDROP TEMPORARY TABLE
statement.DropTableStep
dropTemporaryTable(Table<?> table)
Create a new DSLDROP TEMPORARY TABLE
statement.DropTableStep
dropTemporaryTableIfExists(String table)
Create a new DSLDROP TEMPORARY TABLE IF EXISTS
statement.DropTableStep
dropTemporaryTableIfExists(Name table)
Create a new DSLDROP TEMPORARY TABLE IF EXISTS
statement.DropTableStep
dropTemporaryTableIfExists(Table<?> table)
Create a new DSLDROP TEMPORARY TABLE IF EXISTS
statement.DropTypeStep
dropType(String type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropType(String... type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropType(Collection<?> type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropType(Name type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropType(Name... type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropTypeIfExists(String type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropTypeIfExists(String... type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropTypeIfExists(Collection<?> type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropTypeIfExists(Name type)
Create a new DSLDROP TYPE
statement.DropTypeStep
dropTypeIfExists(Name... type)
Create a new DSLDROP TYPE
statement.DropViewFinalStep
dropView(String view)
Create a new DSLDROP VIEW
statement.DropViewFinalStep
dropView(Name view)
Create a new DSLDROP VIEW
statement.DropViewFinalStep
dropView(Table<?> view)
Create a new DSLDROP VIEW
statement.DropViewFinalStep
dropViewIfExists(String view)
Create a new DSLDROP VIEW IF EXISTS
statement.DropViewFinalStep
dropViewIfExists(Name view)
Create a new DSLDROP VIEW IF EXISTS
statement.DropViewFinalStep
dropViewIfExists(Table<?> view)
Create a new DSLDROP VIEW IF EXISTS
statement.DSLContext
dsl()
Wrap theScope.configuration()
in aDSLContext
, providing access to the configuration-contextual DSL to construct executable queries.int
execute(String sql)
Execute a query holding plain SQL.int
execute(String sql, Object... bindings)
Execute a new query holding plain SQL.int
execute(String sql, QueryPart... parts)
Execute a new query holding plain SQL.int
execute(Query query)
Execute aQuery
in the context of thisDSLContext
.int
execute(SQL sql)
Execute a query holding plain SQL.int
executeDelete(TableRecord<?> record, Condition condition)
Delete a record from a table.int
executeDelete(UpdatableRecord<?> record)
Delete a record from a table.int
executeInsert(TableRecord<?> record)
Insert one record.int
executeUpdate(TableRecord<?> record, Condition condition)
Update a table.int
executeUpdate(UpdatableRecord<?> record)
Update a table.Explain
explain(Query query)
Run anEXPLAIN
statement in the database to estimate the cardinality of the query.List<Object>
extractBindValues(QueryPart part)
Retrieve the bind values that will be bound by a givenQueryPart
.Param<?>
extractParam(QueryPart part, String name)
Get a named parameter from aQueryPart
, provided its name.Map<String,Param<?>>
extractParams(QueryPart part)
Get aMap
of named parameters.SQLDialect
family()
TheSQLDialect.family()
wrapped by this context.Result<Record>
fetch(String sql)
Execute a new query holding plain SQL.Result<Record>
fetch(String sql, Object... bindings)
Execute a new query holding plain SQL.Result<Record>
fetch(String sql, QueryPart... parts)
Execute a new query holding plain SQL.Result<Record>
fetch(ResultSet rs)
Result<Record>
fetch(ResultSet rs, Class<?>... types)
Result<Record>
fetch(ResultSet rs, DataType<?>... types)
Result<Record>
fetch(ResultSet rs, Field<?>... fields)
<R extends Record>
Result<R>fetch(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return results.Result<Record>
fetch(SQL sql)
Execute a new query holding plain SQL.<R extends Record>
Result<R>fetch(Table<R> table)
Execute and return all records for<R extends Record>
Result<R>fetch(Table<R> table, Collection<? extends Condition> conditions)
Execute and return all records for<R extends Record>
Result<R>fetch(Table<R> table, Condition condition)
Execute and return all records for<R extends Record>
Result<R>fetch(Table<R> table, Condition... conditions)
Execute and return all records for<R extends Record>
RfetchAny(Table<R> table)
Execute and return zero or one record for<R extends Record>
RfetchAny(Table<R> table, Collection<? extends Condition> conditions)
Execute and return zero or one record for<R extends Record>
RfetchAny(Table<R> table, Condition condition)
Execute and return zero or one record for<R extends Record>
RfetchAny(Table<R> table, Condition... conditions)
Execute and return zero or one record forCompletionStage<Result<Record>>
fetchAsync(String sql)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(String sql, Object... bindings)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(String sql, QueryPart... parts)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(ResultSet rs)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(ResultSet rs, Class<?>... types)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(ResultSet rs, DataType<?>... types)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(ResultSet rs, Field<?>... fields)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(Executor executor, String sql)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.CompletionStage<Result<Record>>
fetchAsync(Executor executor, String sql, Object... bindings)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.CompletionStage<Result<Record>>
fetchAsync(Executor executor, String sql, QueryPart... parts)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.CompletionStage<Result<Record>>
fetchAsync(Executor executor, ResultSet rs)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.CompletionStage<Result<Record>>
fetchAsync(Executor executor, ResultSet rs, Class<?>... types)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.CompletionStage<Result<Record>>
fetchAsync(Executor executor, ResultSet rs, DataType<?>... types)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.CompletionStage<Result<Record>>
fetchAsync(Executor executor, ResultSet rs, Field<?>... fields)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.<R extends Record>
CompletionStage<Result<R>>fetchAsync(Executor executor, ResultQuery<R> query)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.CompletionStage<Result<Record>>
fetchAsync(Executor executor, SQL sql)
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.<R extends Record>
CompletionStage<Result<R>>fetchAsync(Executor executor, Table<R> table)
Execute and return all records asynchronously for<R extends Record>
CompletionStage<Result<R>>fetchAsync(Executor executor, Table<R> table, Collection<? extends Condition> conditions)
Execute and return all records asynchronously for<R extends Record>
CompletionStage<Result<R>>fetchAsync(Executor executor, Table<R> table, Condition condition)
Execute and return all records asynchronously for<R extends Record>
CompletionStage<Result<R>>fetchAsync(Executor executor, Table<R> table, Condition... conditions)
Execute and return all records asynchronously for<R extends Record>
CompletionStage<Result<R>>fetchAsync(ResultQuery<R> query)
Fetch results in a newCompletionStage
.CompletionStage<Result<Record>>
fetchAsync(SQL sql)
Fetch results in a newCompletionStage
.<R extends Record>
CompletionStage<Result<R>>fetchAsync(Table<R> table)
Execute and return all records asynchronously for<R extends Record>
CompletionStage<Result<R>>fetchAsync(Table<R> table, Collection<? extends Condition> conditions)
Execute and return all records asynchronously for<R extends Record>
CompletionStage<Result<R>>fetchAsync(Table<R> table, Condition condition)
Execute and return all records asynchronously for<R extends Record>
CompletionStage<Result<R>>fetchAsync(Table<R> table, Condition... conditions)
Execute and return all records asynchronously for<R extends TableRecord<R>>
Result<R>fetchByExample(R example)
Execute a "Query by Example" (QBE) based on an example record.int
fetchCount(Select<?> query)
int
fetchCount(Table<?> table)
Count the number of records in a table.int
fetchCount(Table<?> table, Collection<? extends Condition> conditions)
Count the number of records in a table that satisfy a condition.int
fetchCount(Table<?> table, Condition condition)
Count the number of records in a table that satisfy a condition.int
fetchCount(Table<?> table, Condition... conditions)
Count the number of records in a table that satisfy a condition.boolean
fetchExists(Select<?> query)
Check if aSelect
would return any records, if it were executed.boolean
fetchExists(Table<?> table)
Check if a table has any records.boolean
fetchExists(Table<?> table, Collection<? extends Condition> conditions)
Check if a table has any records that satisfy a condition.boolean
fetchExists(Table<?> table, Condition condition)
Check if a table has any records that satisfy a condition.boolean
fetchExists(Table<?> table, Condition... conditions)
Check if a table has any records that satisfy a condition.Result<Record>
fetchFromCSV(String string)
Fetch all data from a CSV string.Result<Record>
fetchFromCSV(String string, boolean header)
Fetch all data from a CSV string.Result<Record>
fetchFromCSV(String string, boolean header, char delimiter)
Fetch all data from a CSV string.Result<Record>
fetchFromCSV(String string, char delimiter)
Fetch all data from a CSV string.Result<Record>
fetchFromHTML(String string)
Convert an HTML table into a jOOQResult
.Result<Record>
fetchFromJSON(String string)
Fetch all data from a JSON string.Result<Record>
fetchFromStringData(String[]... strings)
Fetch all data from a list of strings.Result<Record>
fetchFromStringData(List<String[]> strings)
Fetch all data from a list of strings.Result<Record>
fetchFromStringData(List<String[]> strings, boolean header)
Fetch all data from a list of strings.Result<Record>
fetchFromTXT(String string)
Fetch all data from a formatted string.Result<Record>
fetchFromTXT(String string, String nullLiteral)
Fetch all data from a formatted string.Result<Record>
fetchFromXML(String string)
Fetch all data from an XML string.Cursor<Record>
fetchLazy(String sql)
Execute a new query holding plain SQL and "lazily" return the generated result.Cursor<Record>
fetchLazy(String sql, Object... bindings)
Execute a new query holding plain SQL and "lazily" return the generated result.Cursor<Record>
fetchLazy(String sql, QueryPart... parts)
Execute a new query holding plain SQL and "lazily" return the generated result.Cursor<Record>
fetchLazy(ResultSet rs)
Cursor<Record>
fetchLazy(ResultSet rs, Class<?>... types)
Cursor<Record>
fetchLazy(ResultSet rs, DataType<?>... types)
Cursor<Record>
fetchLazy(ResultSet rs, Field<?>... fields)
<R extends Record>
Cursor<R>fetchLazy(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a cursor.Cursor<Record>
fetchLazy(SQL sql)
Execute a new query holding plain SQL and "lazily" return the generated result.<R extends Record>
Cursor<R>fetchLazy(Table<R> table)
Execute and return all records lazily for<R extends Record>
Cursor<R>fetchLazy(Table<R> table, Collection<? extends Condition> conditions)
Execute and return all records lazily for<R extends Record>
Cursor<R>fetchLazy(Table<R> table, Condition condition)
Execute and return all records lazily for<R extends Record>
Cursor<R>fetchLazy(Table<R> table, Condition... conditions)
Execute and return all records lazily forResults
fetchMany(String sql)
Execute a new query holding plain SQL, possibly returning several result sets.Results
fetchMany(String sql, Object... bindings)
Execute a new query holding plain SQL, possibly returning several result sets.Results
fetchMany(String sql, QueryPart... parts)
Execute a new query holding plain SQL, possibly returning several result sets.<R extends Record>
ResultsfetchMany(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a cursor.Results
fetchMany(SQL sql)
Execute a new query holding plain SQL, possibly returning several result sets.Record
fetchOne(String sql)
Execute a new query holding plain SQL.Record
fetchOne(String sql, Object... bindings)
Execute a new query holding plain SQL.Record
fetchOne(String sql, QueryPart... parts)
Execute a new query holding plain SQL.Record
fetchOne(ResultSet rs)
Record
fetchOne(ResultSet rs, Class<?>... types)
Record
fetchOne(ResultSet rs, DataType<?>... types)
Record
fetchOne(ResultSet rs, Field<?>... fields)
<R extends Record>
RfetchOne(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a record.Record
fetchOne(SQL sql)
Execute a new query holding plain SQL.<R extends Record>
RfetchOne(Table<R> table)
Execute and return zero or one record for<R extends Record>
RfetchOne(Table<R> table, Collection<? extends Condition> conditions)
Execute and return zero or one record for<R extends Record>
RfetchOne(Table<R> table, Condition condition)
Execute and return zero or one record for<R extends Record>
RfetchOne(Table<R> table, Condition... conditions)
Execute and return zero or one record forOptional<Record>
fetchOptional(String sql)
Execute a new query holding plain SQL.Optional<Record>
fetchOptional(String sql, Object... bindings)
Execute a new query holding plain SQL.Optional<Record>
fetchOptional(String sql, QueryPart... parts)
Execute a new query holding plain SQL.Optional<Record>
fetchOptional(ResultSet rs)
Optional<Record>
fetchOptional(ResultSet rs, Class<?>... types)
Optional<Record>
fetchOptional(ResultSet rs, DataType<?>... types)
Optional<Record>
fetchOptional(ResultSet rs, Field<?>... fields)
<R extends Record>
Optional<R>fetchOptional(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a record.Optional<Record>
fetchOptional(SQL sql)
Execute a new query holding plain SQL.<R extends Record>
Optional<R>fetchOptional(Table<R> table)
Execute and return zero or one record for<R extends Record>
Optional<R>fetchOptional(Table<R> table, Collection<? extends Condition> conditions)
Execute and return zero or one record for<R extends Record>
Optional<R>fetchOptional(Table<R> table, Condition condition)
Execute and return zero or one record for<R extends Record>
Optional<R>fetchOptional(Table<R> table, Condition... conditions)
Execute and return zero or one record forOptional<?>
fetchOptionalValue(String sql)
Execute a new query holding plain SQL.Optional<?>
fetchOptionalValue(String sql, Object... bindings)
Execute a new query holding plain SQL.Optional<?>
fetchOptionalValue(String sql, QueryPart... parts)
Execute a new query holding plain SQL.Optional<?>
fetchOptionalValue(ResultSet rs)
Fetch a record from a JDBCResultSet
and return the only contained value.<T> Optional<T>
fetchOptionalValue(ResultSet rs, Class<T> type)
Fetch a record from a JDBCResultSet
and return the only contained value.<T> Optional<T>
fetchOptionalValue(ResultSet rs, DataType<T> type)
Fetch a record from a JDBCResultSet
and return the only contained value.<T> Optional<T>
fetchOptionalValue(ResultSet rs, Field<T> field)
Fetch a record from a JDBCResultSet
and return the only contained value.<T,R extends Record1<T>>
Optional<T>fetchOptionalValue(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a single value.Optional<?>
fetchOptionalValue(SQL sql)
Execute a new query holding plain SQL.<T> Optional<T>
fetchOptionalValue(TableField<?,T> field)
Execute aResultQuery
in the context of thisDSLContext
and return a single value.Record
fetchSingle(String sql)
Execute a new query holding plain SQL.Record
fetchSingle(String sql, Object... bindings)
Execute a new query holding plain SQL.Record
fetchSingle(String sql, QueryPart... parts)
Execute a new query holding plain SQL.Record
fetchSingle(ResultSet rs)
Record
fetchSingle(ResultSet rs, Class<?>... types)
Record
fetchSingle(ResultSet rs, DataType<?>... types)
Record
fetchSingle(ResultSet rs, Field<?>... fields)
Record
fetchSingle(Collection<? extends SelectField<?>> fields)
Execute and return exactly one record for<R extends Record>
RfetchSingle(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a record.Record
fetchSingle(SelectField<?>... fields)
Execute and return exactly one record for<T1> Record1<T1>
fetchSingle(SelectField<T1> field1)
Execute and return exactly one record for<T1,T2>
Record2<T1,T2>fetchSingle(SelectField<T1> field1, SelectField<T2> field2)
Execute and return exactly one record for<T1,T2,T3>
Record3<T1,T2,T3>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3)
Execute and return exactly one record for<T1,T2,T3,T4>
Record4<T1,T2,T3,T4>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4)
Execute and return exactly one record for<T1,T2,T3,T4,T5>
Record5<T1,T2,T3,T4,T5>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6>
Record6<T1,T2,T3,T4,T5,T6>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7>
Record7<T1,T2,T3,T4,T5,T6,T7>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8>
Record8<T1,T2,T3,T4,T5,T6,T7,T8>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9>
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21)
Execute and return exactly one record for<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21, SelectField<T22> field22)
Execute and return exactly one record forRecord
fetchSingle(SQL sql)
Execute a new query holding plain SQL.<R extends Record>
RfetchSingle(Table<R> table)
Execute and return exactly one record for<R extends Record>
RfetchSingle(Table<R> table, Collection<? extends Condition> conditions)
Execute and return exactly one record for<R extends Record>
RfetchSingle(Table<R> table, Condition condition)
Execute and return exactly one record for<R extends Record>
RfetchSingle(Table<R> table, Condition... conditions)
Execute and return exactly one record forStream<Record>
fetchStream(String sql)
Execute a new query holding plain SQL and "lazily" return the generated result.Stream<Record>
fetchStream(String sql, Object... bindings)
Execute a new query holding plain SQL and "lazily" return the generated result.Stream<Record>
fetchStream(String sql, QueryPart... parts)
Execute a new query holding plain SQL and "lazily" return the generated result.Stream<Record>
fetchStream(ResultSet rs)
Stream<Record>
fetchStream(ResultSet rs, Class<?>... types)
Stream<Record>
fetchStream(ResultSet rs, DataType<?>... types)
Stream<Record>
fetchStream(ResultSet rs, Field<?>... fields)
<R extends Record>
Stream<R>fetchStream(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a stream.Stream<Record>
fetchStream(SQL sql)
Execute a new query holding plain SQL and "lazily" return the generated result.<R extends Record>
Stream<R>fetchStream(Table<R> table)
Execute and return all records lazily for<R extends Record>
Stream<R>fetchStream(Table<R> table, Collection<? extends Condition> conditions)
Execute and return all records lazily for<R extends Record>
Stream<R>fetchStream(Table<R> table, Condition condition)
Execute and return all records lazily for<R extends Record>
Stream<R>fetchStream(Table<R> table, Condition... conditions)
Execute and return all records lazily forObject
fetchValue(String sql)
Execute a new query holding plain SQL.Object
fetchValue(String sql, Object... bindings)
Execute a new query holding plain SQL.Object
fetchValue(String sql, QueryPart... parts)
Execute a new query holding plain SQL.Object
fetchValue(ResultSet rs)
Fetch a record from a JDBCResultSet
and return the only contained value.<T> T
fetchValue(ResultSet rs, Class<T> type)
Fetch a record from a JDBCResultSet
and return the only contained value.<T> T
fetchValue(ResultSet rs, DataType<T> type)
Fetch a record from a JDBCResultSet
and return the only contained value.<T> T
fetchValue(ResultSet rs, Field<T> field)
Fetch a record from a JDBCResultSet
and return the only contained value.<T> T
fetchValue(Field<T> field)
Execute aResultQuery
in the context of thisDSLContext
and return a single value.<T,R extends Record1<T>>
TfetchValue(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return a single value.Object
fetchValue(SQL sql)
Execute a new query holding plain SQL.<T> T
fetchValue(Table<? extends Record1<T>> table)
Fetch a single value from a single column table.<T> T
fetchValue(TableField<?,T> field)
Execute aResultQuery
in the context of thisDSLContext
and return a single value.List<?>
fetchValues(String sql)
Execute a new query holding plain SQL.List<?>
fetchValues(String sql, Object... bindings)
Execute a new query holding plain SQL.List<?>
fetchValues(String sql, QueryPart... parts)
Execute a new query holding plain SQL.List<?>
fetchValues(ResultSet rs)
Fetch a result from a JDBCResultSet
and return the only contained column's values.<T> List<T>
fetchValues(ResultSet rs, Class<T> type)
Fetch a result from a JDBCResultSet
and return the only contained column's values.<T> List<T>
fetchValues(ResultSet rs, DataType<T> type)
Fetch a result from a JDBCResultSet
and return the only contained column's values.<T> List<T>
fetchValues(ResultSet rs, Field<T> field)
Fetch a result from a JDBCResultSet
and return the only contained column's values.<T,R extends Record1<T>>
List<T>fetchValues(ResultQuery<R> query)
Execute aResultQuery
in the context of thisDSLContext
and return all values for the only column.List<?>
fetchValues(SQL sql)
Execute a new query holding plain SQL.<T> List<T>
fetchValues(Table<? extends Record1<T>> table)
Fetch all values from a single column table.<T> List<T>
fetchValues(TableField<?,T> field)
Fetch all values in a givenTable
'sTableField
.GrantOnStep
grant(Collection<? extends Privilege> privileges)
Grant privileges on a table to user or role.GrantOnStep
grant(Privilege privilege)
Grant a privilege on a table to user or role.GrantOnStep
grant(Privilege... privileges)
Grant privileges on a table to user or role.InformationSchema
informationSchema(Catalog catalog)
Convenience method forMeta.informationSchema()
.InformationSchema
informationSchema(Catalog... catalogs)
Convenience method forMeta.informationSchema()
.InformationSchema
informationSchema(Schema schema)
Convenience method forMeta.informationSchema()
.InformationSchema
informationSchema(Schema... schemas)
Convenience method forMeta.informationSchema()
.InformationSchema
informationSchema(Table<?> table)
Convenience method forMeta.informationSchema()
.InformationSchema
informationSchema(Table<?>... tables)
Convenience method forMeta.informationSchema()
.<R extends Record>
InsertSetStep<R>insertInto(Table<R> into)
Create a new DSL insert statement.<R extends Record>
InsertValuesStepN<R>insertInto(Table<R> into, Collection<? extends Field<?>> fields)
Create a new DSL insert statement.<R extends Record>
InsertValuesStepN<R>insertInto(Table<R> into, Field<?>... fields)
Create a new DSL insert statement.<R extends Record,T1>
InsertValuesStep1<R,T1>insertInto(Table<R> into, Field<T1> field1)
Create a new DSL insert statement.<R extends Record,T1,T2>
InsertValuesStep2<R,T1,T2>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2)
Create a new DSL insert statement.<R extends Record,T1,T2,T3>
InsertValuesStep3<R,T1,T2,T3>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4>
InsertValuesStep4<R,T1,T2,T3,T4>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5>
InsertValuesStep5<R,T1,T2,T3,T4,T5>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6>
InsertValuesStep6<R,T1,T2,T3,T4,T5,T6>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7>
InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
InsertValuesStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
InsertValuesStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
InsertValuesStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
InsertValuesStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
InsertValuesStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
InsertValuesStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
InsertValuesStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
InsertValuesStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
InsertValuesStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
InsertValuesStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
InsertValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
InsertValuesStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
InsertValuesStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
InsertValuesStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Create a new DSL insert statement.<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
InsertValuesStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Create a new DSL insert statement.<R extends Record>
InsertQuery<R>insertQuery(Table<R> into)
Create a newInsertQuery
BigInteger
lastID()
Retrieve the last inserted ID.<R extends Record>
LoaderOptionsStep<R>loadInto(Table<R> table)
Create a newLoader
object to load data from a CSV or XML source.Schema
map(Schema schema)
Map a schema to another one.<R extends Record>
Table<R>map(Table<R> table)
Map a table to another one.<R extends Record>
MergeUsingStep<R>mergeInto(Table<R> table)
Create a new DSL SQL standard MERGE statement.<R extends Record>
MergeKeyStepN<R>mergeInto(Table<R> table, Collection<? extends Field<?>> fields)
Create a new DSL merge statement (H2-specific syntax).<R extends Record>
MergeKeyStepN<R>mergeInto(Table<R> table, Field<?>... fields)
<R extends Record,T1>
MergeKeyStep1<R,T1>mergeInto(Table<R> table, Field<T1> field1)
<R extends Record,T1,T2>
MergeKeyStep2<R,T1,T2>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2)
<R extends Record,T1,T2,T3>
MergeKeyStep3<R,T1,T2,T3>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3)
<R extends Record,T1,T2,T3,T4>
MergeKeyStep4<R,T1,T2,T3,T4>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
<R extends Record,T1,T2,T3,T4,T5>
MergeKeyStep5<R,T1,T2,T3,T4,T5>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
<R extends Record,T1,T2,T3,T4,T5,T6>
MergeKeyStep6<R,T1,T2,T3,T4,T5,T6>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
<R extends Record,T1,T2,T3,T4,T5,T6,T7>
MergeKeyStep7<R,T1,T2,T3,T4,T5,T6,T7>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8>
MergeKeyStep8<R,T1,T2,T3,T4,T5,T6,T7,T8>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9>
MergeKeyStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
MergeKeyStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
MergeKeyStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
MergeKeyStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
MergeKeyStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
MergeKeyStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
MergeKeyStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
MergeKeyStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
MergeKeyStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
MergeKeyStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
MergeKeyStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
MergeKeyStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
MergeKeyStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
<R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
MergeKeyStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Meta
meta()
Access the database meta data.Meta
meta(String... sources)
Create meta data from a set of sources.Meta
meta(DatabaseMetaData meta)
Access the database meta data from an explicit JDBCDatabaseMetaData
.Meta
meta(Catalog... catalogs)
Access the database meta data from explicit catalog information.Meta
meta(Query... queries)
Create meta data from a set of DDL queries.Meta
meta(Schema... schemas)
Access the database meta data from explicit schema information.Meta
meta(Source... sources)
Create meta data from a set of sources.Meta
meta(Table<?>... tables)
Access the database meta data from explicit table information.Meta
meta(InformationSchema schema)
Access the database meta data from an explicit JAXB-annotated meta model.Migration
migrateTo(Version to)
Create a migration from the currently installed version to a new version.void
mock(MockDataProvider provider, MockRunnable mockable)
Run aMockRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
's, and of aMockDataProvider
.<T> T
mockResult(MockDataProvider provider, MockCallable<T> mockable)
Run aMockRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
's, and of aMockDataProvider
and return themockable
's outcome.Record
newRecord(Collection<? extends Field<?>> fields)
Create a new emptyRecord
.Record
newRecord(Field<?>... fields)
Create a new emptyRecord
.<T1> Record1<T1>
newRecord(Field<T1> field1)
Create a new emptyRecord
.<T1,T2>
Record2<T1,T2>newRecord(Field<T1> field1, Field<T2> field2)
Create a new emptyRecord
.<T1,T2,T3>
Record3<T1,T2,T3>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3)
Create a new emptyRecord
.<T1,T2,T3,T4>
Record4<T1,T2,T3,T4>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Create a new emptyRecord
.<T1,T2,T3,T4,T5>
Record5<T1,T2,T3,T4,T5>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6>
Record6<T1,T2,T3,T4,T5,T6>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7>
Record7<T1,T2,T3,T4,T5,T6,T7>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8>
Record8<T1,T2,T3,T4,T5,T6,T7,T8>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9>
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Create a new emptyRecord
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Create a new emptyRecord
.<R extends Record>
RnewRecord(Table<R> table)
Create a newRecord
that can be inserted into the corresponding table.<R extends Record>
RnewRecord(Table<R> table, Object source)
Create a new pre-filledRecord
that can be inserted into the corresponding table.<R extends UDTRecord<R>>
RnewRecord(UDT<R> type)
Create a newUDTRecord
.Result<Record>
newResult(Collection<? extends Field<?>> fields)
Create a new emptyRecord
.Result<Record>
newResult(Field<?>... fields)
Create a new emptyRecord
.<T1> Result<Record1<T1>>
newResult(Field<T1> field1)
Create a new emptyResult
.<T1,T2>
Result<Record2<T1,T2>>newResult(Field<T1> field1, Field<T2> field2)
Create a new emptyResult
.<T1,T2,T3>
Result<Record3<T1,T2,T3>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3)
Create a new emptyResult
.<T1,T2,T3,T4>
Result<Record4<T1,T2,T3,T4>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Create a new emptyResult
.<T1,T2,T3,T4,T5>
Result<Record5<T1,T2,T3,T4,T5>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6>
Result<Record6<T1,T2,T3,T4,T5,T6>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7>
Result<Record7<T1,T2,T3,T4,T5,T6,T7>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8>
Result<Record8<T1,T2,T3,T4,T5,T6,T7,T8>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9>
Result<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
Result<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
Result<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
Result<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
Result<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
Result<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
Result<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
Result<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
Result<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
Result<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
Result<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
Result<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Create a new emptyResult
.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
Result<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>>newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Create a new emptyResult
.<R extends Record>
Result<R>newResult(Table<R> table)
Create a new emptyResult
.BigInteger
nextval(String sequence)
Convenience method to fetch the NEXTVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.BigInteger
nextval(Name sequence)
Convenience method to fetch the NEXTVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.<T extends Number>
Tnextval(Sequence<T> sequence)
Convenience method to fetch the NEXTVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.Parser
parser()
Access the parser API.Connection
parsingConnection()
A JDBC connection that runs each statement through theDSLContext.parser()
first, prior to re-generating and running the SQL.DataSource
parsingDataSource()
A JDBC data source that runs each statement through theDSLContext.parser()
first, prior to re-generating and running the SQL.Queries
queries(Collection<? extends Query> queries)
Wrap a collection of queries.Queries
queries(Query... queries)
Wrap a collection of queries.RowCountQuery
query(String sql)
Create a new query holding plain SQL.RowCountQuery
query(String sql, Object... bindings)
Create a new query holding plain SQL.RowCountQuery
query(String sql, QueryPart... parts)
Create a new query holding plain SQL.RowCountQuery
query(SQL sql)
Create a new query holding plain SQL.String
render(QueryPart part)
Render a QueryPart in the context of thisDSLContext
.RenderContext
renderContext()
Get a newRenderContext
for the context of thisDSLContext
.String
renderInlined(QueryPart part)
Render a QueryPart in the context of thisDSLContext
, inlining all bind variables.String
renderNamedOrInlinedParams(QueryPart part)
Render a QueryPart in the context of thisDSLContext
, rendering bind variables as named parameters, or inlined parameters if they have no name.String
renderNamedParams(QueryPart part)
Render a QueryPart in the context of thisDSLContext
, rendering bind variables as named parameters.ResultQuery<Record>
resultQuery(String sql)
Create a new query holding plain SQL.ResultQuery<Record>
resultQuery(String sql, Object... bindings)
Create a new query holding plain SQL.ResultQuery<Record>
resultQuery(String sql, QueryPart... parts)
Create a new query holding plain SQL.ResultQuery<Record>
resultQuery(SQL sql)
Create a new query holding plain SQL.RevokeOnStep
revoke(Collection<? extends Privilege> privileges)
Revoke privileges on table from user or role.RevokeOnStep
revoke(Privilege privilege)
Revoke a privilege on table from user or role.RevokeOnStep
revoke(Privilege... privileges)
Revoke privileges on table from user or role.RevokeOnStep
revokeGrantOptionFor(Collection<? extends Privilege> privileges)
Revoke grant option for some privileges on a table from user or role.RevokeOnStep
revokeGrantOptionFor(Privilege privilege)
Revoke grant option for a privilege on a table from user or role.RevokeOnStep
revokeGrantOptionFor(Privilege... privileges)
Revoke grant option for some privileges on a table from user or role.SelectSelectStep<Record>
select(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL select statement.<T1> SelectSelectStep<Record1<T1>>
select(SelectField<T1> field1)
Create a new DSL select statement.<T1,T2>
SelectSelectStep<Record2<T1,T2>>select(SelectField<T1> field1, SelectField<T2> field2)
Create a new DSL select statement.<T1,T2,T3>
SelectSelectStep<Record3<T1,T2,T3>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3)
Create a new DSL select statement.<T1,T2,T3,T4>
SelectSelectStep<Record4<T1,T2,T3,T4>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4)
Create a new DSL select statement.<T1,T2,T3,T4,T5>
SelectSelectStep<Record5<T1,T2,T3,T4,T5>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6>
SelectSelectStep<Record6<T1,T2,T3,T4,T5,T6>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7>
SelectSelectStep<Record7<T1,T2,T3,T4,T5,T6,T7>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8>
SelectSelectStep<Record8<T1,T2,T3,T4,T5,T6,T7,T8>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9>
SelectSelectStep<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
SelectSelectStep<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
SelectSelectStep<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
SelectSelectStep<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
SelectSelectStep<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
SelectSelectStep<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
SelectSelectStep<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
SelectSelectStep<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
SelectSelectStep<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
SelectSelectStep<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
SelectSelectStep<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
SelectSelectStep<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
SelectSelectStep<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>>select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21, SelectField<T22> field22)
Create a new DSL select statement.SelectSelectStep<Record>
select(SelectFieldOrAsterisk... fields)
Create a new DSL select statement.SelectSelectStep<Record1<Integer>>
selectCount()
Create a new DSL select statement forCOUNT(*)
.SelectSelectStep<Record>
selectDistinct(Collection<? extends SelectFieldOrAsterisk> fields)
Create a new DSL select statement.<T1> SelectSelectStep<Record1<T1>>
selectDistinct(SelectField<T1> field1)
Create a new DSL select statement.<T1,T2>
SelectSelectStep<Record2<T1,T2>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2)
Create a new DSL select statement.<T1,T2,T3>
SelectSelectStep<Record3<T1,T2,T3>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3)
Create a new DSL select statement.<T1,T2,T3,T4>
SelectSelectStep<Record4<T1,T2,T3,T4>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4)
Create a new DSL select statement.<T1,T2,T3,T4,T5>
SelectSelectStep<Record5<T1,T2,T3,T4,T5>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6>
SelectSelectStep<Record6<T1,T2,T3,T4,T5,T6>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7>
SelectSelectStep<Record7<T1,T2,T3,T4,T5,T6,T7>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8>
SelectSelectStep<Record8<T1,T2,T3,T4,T5,T6,T7,T8>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9>
SelectSelectStep<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
SelectSelectStep<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>
SelectSelectStep<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>
SelectSelectStep<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>
SelectSelectStep<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>
SelectSelectStep<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>
SelectSelectStep<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>
SelectSelectStep<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>
SelectSelectStep<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>
SelectSelectStep<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>
SelectSelectStep<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>
SelectSelectStep<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21)
Create a new DSL select statement.<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>
SelectSelectStep<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>>selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21, SelectField<T22> field22)
Create a new DSL select statement.SelectSelectStep<Record>
selectDistinct(SelectFieldOrAsterisk... fields)
Create a new DSL select statement.SelectWhereStep<Record>
selectFrom(String sql)
Create a new DSL select statement, projecting*
.SelectWhereStep<Record>
selectFrom(String sql, Object... bindings)
Create a new DSL select statement, projecting*
.SelectWhereStep<Record>
selectFrom(String sql, QueryPart... parts)
Create a new DSL select statement, projecting*
.SelectWhereStep<Record>
selectFrom(Name table)
Create a new DSL select statement, projecting*
.SelectWhereStep<Record>
selectFrom(SQL sql)
Create a new DSL select statement, projecting*
.<R extends Record>
SelectWhereStep<R>selectFrom(Table<R> table)
Create a new DSL select statement, projecting the known columns from a table.SelectSelectStep<Record1<Integer>>
selectOne()
Create a new DSL select statement for a constant1
literal.SelectQuery<Record>
selectQuery()
Create a newSelectQuery
<R extends Record>
SelectQuery<R>selectQuery(TableLike<R> table)
Create a newSelectQuery
SelectSelectStep<Record1<Integer>>
selectZero()
Create a new DSL select statement for a constant0
literal.RowCountQuery
set(Name name, Param<?> param)
Set a vendor specific flag to a new value.RowCountQuery
setCatalog(String catalog)
Set the current catalog to a new value.RowCountQuery
setCatalog(Catalog catalog)
Set the current catalog to a new value.RowCountQuery
setCatalog(Name catalog)
Set the current catalog to a new value.RowCountQuery
setSchema(String schema)
Set the current schema to a new value.RowCountQuery
setSchema(Name schema)
Set the current schema to a new value.RowCountQuery
setSchema(Schema schema)
Set the current schema to a new value.Settings
settings()
The settings wrapped by this context.Block
statements(Collection<? extends Statement> statements)
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..
Block
statements(Statement... statements)
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN ..
String
toString()
void
transaction(ContextTransactionalRunnable transactional)
Run aContextTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.void
transaction(TransactionalRunnable transactional)
Run aTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.CompletionStage<Void>
transactionAsync(Executor executor, TransactionalRunnable transactional)
Run aTransactionalRunnable
asynchronously.CompletionStage<Void>
transactionAsync(TransactionalRunnable transactional)
Run aTransactionalRunnable
asynchronously.<T> T
transactionResult(ContextTransactionalCallable<T> transactional)
Run aContextTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and return thetransactional
's outcome.<T> T
transactionResult(TransactionalCallable<T> transactional)
Run aTransactionalCallable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and return thetransactional
's outcome.<T> CompletionStage<T>
transactionResultAsync(Executor executor, TransactionalCallable<T> transactional)
Run aTransactionalCallable
asynchronously.<T> CompletionStage<T>
transactionResultAsync(TransactionalCallable<T> transactional)
Run aTransactionalCallable
asynchronously.TruncateIdentityStep<Record>
truncate(String table)
Create a new DSL truncate statement.TruncateIdentityStep<Record>
truncate(Name table)
Create a new DSL truncate statement.<R extends Record>
TruncateIdentityStep<R>truncate(Table<R> table)
Create a new DSL truncate statement.TruncateIdentityStep<Record>
truncateTable(String table)
Create a new DSL truncate statement.TruncateIdentityStep<Record>
truncateTable(Name table)
Create a new DSL truncate statement.<R extends Record>
TruncateIdentityStep<R>truncateTable(Table<R> table)
Create a new DSL truncate statement.<R extends Record>
UpdateSetFirstStep<R>update(Table<R> table)
Create a new DSL update statement.<R extends Record>
UpdateQuery<R>updateQuery(Table<R> table)
Create a newUpdateQuery
Version
version(String id)
Initialise aVersion
.WithAsStep
with(String alias)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep1
with(String alias, String fieldAlias1)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
with(String alias, String... fieldAliases)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep2
with(String alias, String fieldAlias1, String fieldAlias2)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep3
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep4
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep5
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep6
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep7
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep8
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep9
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep10
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep11
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep12
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep13
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep14
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep15
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep16
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep17
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep18
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep19
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep20
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep21
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep22
with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21, String fieldAlias22)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
with(String alias, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
with(String alias, Function<? super Field<?>,? extends String> fieldNameFunction)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithStep
with(CommonTableExpression<?>... tables)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
with(Name alias)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep1
with(Name alias, Name fieldAlias1)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
with(Name alias, Name... fieldAliases)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep2
with(Name alias, Name fieldAlias1, Name fieldAlias2)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep3
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep4
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep5
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep6
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep7
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep8
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep9
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep10
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep11
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep12
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep13
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep14
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep15
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep16
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep17
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep18
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep19
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep20
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep21
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep22
with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21, Name fieldAlias22)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
withRecursive(String alias)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep1
withRecursive(String alias, String fieldAlias1)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
withRecursive(String alias, String... fieldAliases)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep2
withRecursive(String alias, String fieldAlias1, String fieldAlias2)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep3
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep4
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep5
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep6
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep7
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep8
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep9
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep10
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep11
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep12
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep13
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep14
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep15
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep16
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep17
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep18
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep19
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep20
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep21
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep22
withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21, String fieldAlias22)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
withRecursive(String alias, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
withRecursive(String alias, Function<? super Field<?>,? extends String> fieldNameFunction)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithStep
withRecursive(CommonTableExpression<?>... tables)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
withRecursive(Name alias)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep1
withRecursive(Name alias, Name fieldAlias1)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep
withRecursive(Name alias, Name... fieldAliases)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep2
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep3
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep4
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep5
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep6
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep7
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep8
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep9
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep10
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep11
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep12
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep13
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep14
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep15
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep16
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep17
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep18
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep19
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep20
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep21
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.WithAsStep22
withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21, Name fieldAlias22)
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.
-
-
-
Constructor Detail
-
DefaultDSLContext
public DefaultDSLContext(SQLDialect dialect)
-
DefaultDSLContext
public DefaultDSLContext(SQLDialect dialect, Settings settings)
-
DefaultDSLContext
public DefaultDSLContext(Connection connection, SQLDialect dialect)
-
DefaultDSLContext
public DefaultDSLContext(Connection connection, SQLDialect dialect, Settings settings)
-
DefaultDSLContext
public DefaultDSLContext(DataSource datasource, SQLDialect dialect)
-
DefaultDSLContext
public DefaultDSLContext(DataSource datasource, SQLDialect dialect, Settings settings)
-
DefaultDSLContext
public DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect)
-
DefaultDSLContext
public DefaultDSLContext(ConnectionProvider connectionProvider, SQLDialect dialect, Settings settings)
-
DefaultDSLContext
public DefaultDSLContext(Configuration configuration)
-
-
Method Detail
-
close
public void close()
Description copied from interface:DSLContext
Close the underlying resources, if any resources have been allocated when constructing thisDSLContext
.Some
DSLContext
constructors, such asDSL.using(String)
,DSL.using(String, Properties)
, orDSL.using(String, String, String)
allocate aConnection
resource, which is inaccessible to the outside of theDSLContext
implementation. Proper resource management must thus be done via thisDSLContext.close()
method.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceDSLContext
-
map
public Schema map(Schema schema)
Description copied from interface:DSLContext
Map a schema to another one.This will map a schema onto another one, depending on configured schema mapping in this
DSLContext
. If no applicable schema mapping can be found, the schema itself is returned.- Specified by:
map
in interfaceDSLContext
- Parameters:
schema
- A schema- Returns:
- The mapped schema
-
map
public <R extends Record> Table<R> map(Table<R> table)
Description copied from interface:DSLContext
Map a table to another one.This will map a table onto another one, depending on configured table mapping in this
DSLContext
. If no applicable table mapping can be found, the table itself is returned.- Specified by:
map
in interfaceDSLContext
- Parameters:
table
- A table- Returns:
- The mapped table
-
parser
public Parser parser()
Description copied from interface:DSLContext
Access the parser API.This is experimental functionality.
- Specified by:
parser
in interfaceDSLContext
-
parsingConnection
public Connection parsingConnection()
Description copied from interface:DSLContext
A JDBC connection that runs each statement through theDSLContext.parser()
first, prior to re-generating and running the SQL.The resulting
Connection
wraps an underlying JDBC connection that has been obtained fromConnectionProvider.acquire()
and must be released by callingConnection.close()
.This is experimental functionality:
- While this works well for static
Statement
executions, bind variables and their position calculation might cause issues when the generated SQL output involves more complex SQL transformation. See also https://github.com/jOOQ/jOOQ/issues/5759. - Batching statements is currently not supported. See also https://github.com/jOOQ/jOOQ/issues/5757.
- Specified by:
parsingConnection
in interfaceDSLContext
- While this works well for static
-
parsingDataSource
public DataSource parsingDataSource()
Description copied from interface:DSLContext
A JDBC data source that runs each statement through theDSLContext.parser()
first, prior to re-generating and running the SQL.This simply wraps the
DSLContext.parsingConnection()
in aDataSource
.- Specified by:
parsingDataSource
in interfaceDSLContext
-
diagnosticsConnection
public Connection diagnosticsConnection()
Description copied from interface:DSLContext
A JDBC connection that proxies the underlying connection to run the jOOQ Diagnostics Pack on executed queries.This is experimental functionality.
- Specified by:
diagnosticsConnection
in interfaceDSLContext
-
diagnosticsDataSource
public DataSource diagnosticsDataSource()
Description copied from interface:DSLContext
A JDBC connection that proxies the underlying connection to run the jOOQ Diagnostics Pack on executed queries.This simply wraps the
DSLContext.diagnosticsConnection()
in aDataSource
.- Specified by:
diagnosticsDataSource
in interfaceDSLContext
-
version
public Version version(String id)
Description copied from interface:DSLContext
Initialise aVersion
.This is EXPERIMENTAL functionality and subject to change in future jOOQ versions.
- Specified by:
version
in interfaceDSLContext
-
migrateTo
public Migration migrateTo(Version to)
Description copied from interface:DSLContext
Create a migration from the currently installed version to a new version.This is EXPERIMENTAL functionality and subject to change in future jOOQ versions.
- Specified by:
migrateTo
in interfaceDSLContext
-
meta
public Meta meta()
Description copied from interface:DSLContext
Access the database meta data.This method returns meta information provided by
Configuration.metaProvider()
, which defaults to a wrapper type that gives access to your JDBC connection'sDatabaseMetaData
as obtained from yourConnectionProvider
.- Specified by:
meta
in interfaceDSLContext
- See Also:
DSLContext.meta(DatabaseMetaData)
-
meta
public Meta meta(DatabaseMetaData meta)
Description copied from interface:DSLContext
Access the database meta data from an explicit JDBCDatabaseMetaData
.- Specified by:
meta
in interfaceDSLContext
-
meta
public Meta meta(Catalog... catalogs)
Description copied from interface:DSLContext
Access the database meta data from explicit catalog information.This will not connect to your database to get live meta information, unlike
DSLContext.meta()
andDSLContext.meta(DatabaseMetaData)
.- Specified by:
meta
in interfaceDSLContext
-
meta
public Meta meta(Schema... schemas)
Description copied from interface:DSLContext
Access the database meta data from explicit schema information.This will not connect to your database to get live meta information, unlike
DSLContext.meta()
andDSLContext.meta(DatabaseMetaData)
.- Specified by:
meta
in interfaceDSLContext
-
meta
public Meta meta(Table<?>... tables)
Description copied from interface:DSLContext
Access the database meta data from explicit table information.This will not connect to your database to get live meta information, unlike
DSLContext.meta()
andDSLContext.meta(DatabaseMetaData)
.- Specified by:
meta
in interfaceDSLContext
-
meta
public Meta meta(InformationSchema schema)
Description copied from interface:DSLContext
Access the database meta data from an explicit JAXB-annotated meta model.This will not connect to your database to get live meta information, unlike
DSLContext.meta()
andDSLContext.meta(DatabaseMetaData)
.- Specified by:
meta
in interfaceDSLContext
-
meta
public Meta meta(String... sources)
Description copied from interface:DSLContext
Create meta data from a set of sources.This is convenience for wrapping all argument
String
s inSource
. The same set of content types are supported as inDSLContext.meta(Source...)
.- Specified by:
meta
in interfaceDSLContext
-
meta
public Meta meta(Source... sources)
Description copied from interface:DSLContext
Create meta data from a set of sources.This method creates a
Meta
representation from a set of source content, which can be any of:- A set of DDL scripts, which will be parsed using
DSLContext.parser()
. - A set of XML files, which will be unmarshalled into
InformationSchema
objects.
This will not connect to your database to get live meta information, unlike
DSLContext.meta()
andDSLContext.meta(DatabaseMetaData)
.- Specified by:
meta
in interfaceDSLContext
- A set of DDL scripts, which will be parsed using
-
meta
public Meta meta(Query... queries)
Description copied from interface:DSLContext
Create meta data from a set of DDL queries.This works the same way as
DSLContext.meta(Source...)
, without the need of parsing the DDL scripts.- Specified by:
meta
in interfaceDSLContext
-
informationSchema
public InformationSchema informationSchema(Catalog catalog)
Description copied from interface:DSLContext
Convenience method forMeta.informationSchema()
.- Specified by:
informationSchema
in interfaceDSLContext
- See Also:
DSLContext.meta(Catalog...)
,Meta.informationSchema()
-
informationSchema
public InformationSchema informationSchema(Catalog... catalogs)
Description copied from interface:DSLContext
Convenience method forMeta.informationSchema()
.- Specified by:
informationSchema
in interfaceDSLContext
- See Also:
DSLContext.meta(Catalog...)
,Meta.informationSchema()
-
informationSchema
public InformationSchema informationSchema(Schema schema)
Description copied from interface:DSLContext
Convenience method forMeta.informationSchema()
.- Specified by:
informationSchema
in interfaceDSLContext
- See Also:
DSLContext.meta(Schema...)
,Meta.informationSchema()
-
informationSchema
public InformationSchema informationSchema(Schema... schemas)
Description copied from interface:DSLContext
Convenience method forMeta.informationSchema()
.- Specified by:
informationSchema
in interfaceDSLContext
- See Also:
DSLContext.meta(Schema...)
,Meta.informationSchema()
-
informationSchema
public InformationSchema informationSchema(Table<?> table)
Description copied from interface:DSLContext
Convenience method forMeta.informationSchema()
.- Specified by:
informationSchema
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.informationSchema()
-
informationSchema
public InformationSchema informationSchema(Table<?>... tables)
Description copied from interface:DSLContext
Convenience method forMeta.informationSchema()
.- Specified by:
informationSchema
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.informationSchema()
-
explain
public Explain explain(Query query)
Description copied from interface:DSLContext
Run anEXPLAIN
statement in the database to estimate the cardinality of the query.- Specified by:
explain
in interfaceDSLContext
-
transactionResult
public <T> T transactionResult(ContextTransactionalCallable<T> transactional)
Description copied from interface:DSLContext
Run aContextTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and return thetransactional
's outcome.The argument transactional code may capture scope to derive its
Configuration
from the "context" in order to create new statements. This context can be provided, for instance, byThreadLocalTransactionProvider
automatically.- Specified by:
transactionResult
in interfaceDSLContext
- Parameters:
transactional
- The transactional code- Returns:
- The transactional outcome
-
transactionResult
public <T> T transactionResult(TransactionalCallable<T> transactional)
Description copied from interface:DSLContext
Run aTransactionalCallable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and return thetransactional
's outcome.The argument transactional code should not capture any scope but derive its
Configuration
from theTransactionalCallable.run(Configuration)
argument in order to create new statements.- Specified by:
transactionResult
in interfaceDSLContext
- Parameters:
transactional
- The transactional code- Returns:
- The transactional outcome
-
transaction
public void transaction(ContextTransactionalRunnable transactional)
Description copied from interface:DSLContext
Run aContextTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.The argument transactional code may capture scope to derive its
Configuration
from the "context" in order to create new statements. This context can be provided, for instance, byThreadLocalTransactionProvider
automatically.- Specified by:
transaction
in interfaceDSLContext
- Parameters:
transactional
- The transactional code
-
transaction
public void transaction(TransactionalRunnable transactional)
Description copied from interface:DSLContext
Run aTransactionalRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
.The argument transactional code should not capture any scope but derive its
Configuration
from theTransactionalCallable.run(Configuration)
argument in order to create new statements.- Specified by:
transaction
in interfaceDSLContext
- Parameters:
transactional
- The transactional code
-
transactionAsync
public CompletionStage<Void> transactionAsync(TransactionalRunnable transactional)
Description copied from interface:DSLContext
Run aTransactionalRunnable
asynchronously.The
TransactionRunnable
is run in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and returns thetransactional
's outcome in a newCompletionStage
that is asynchronously completed by a task run by anExecutor
provided by the underlyingScope.configuration()
'sConfiguration.executorProvider()
.- Specified by:
transactionAsync
in interfaceDSLContext
- Parameters:
transactional
- The transactional code
-
transactionAsync
public CompletionStage<Void> transactionAsync(Executor executor, TransactionalRunnable transactional)
Description copied from interface:DSLContext
Run aTransactionalRunnable
asynchronously.The
TransactionRunnable
is run in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and returns thetransactional
's outcome in a newCompletionStage
that is asynchronously completed by a task run by a givenExecutor
.- Specified by:
transactionAsync
in interfaceDSLContext
transactional
- The transactional code
-
transactionResultAsync
public <T> CompletionStage<T> transactionResultAsync(TransactionalCallable<T> transactional)
Description copied from interface:DSLContext
Run aTransactionalCallable
asynchronously.The
TransactionCallable
is run in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and returns thetransactional
's outcome in a newCompletionStage
that is asynchronously completed by a task run by anExecutor
provided by the underlyingScope.configuration()
'sConfiguration.executorProvider()
.- Specified by:
transactionResultAsync
in interfaceDSLContext
- Parameters:
transactional
- The transactional code- Returns:
- The transactional outcome
-
transactionResultAsync
public <T> CompletionStage<T> transactionResultAsync(Executor executor, TransactionalCallable<T> transactional)
Description copied from interface:DSLContext
Run aTransactionalCallable
asynchronously.The
TransactionCallable
is run in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.transactionProvider()
, and returns thetransactional
's outcome in a newCompletionStage
that is asynchronously completed by a task run by a givenExecutor
.- Specified by:
transactionResultAsync
in interfaceDSLContext
transactional
- The transactional code- Returns:
- The transactional outcome
-
connectionResult
public <T> T connectionResult(ConnectionCallable<T> callable)
Description copied from interface:DSLContext
Run aConnectionCallable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.connectionProvider()
.- Specified by:
connectionResult
in interfaceDSLContext
- Parameters:
callable
- The code running statements against theconnection
.- Returns:
- The outcome of the callable
-
connection
public void connection(ConnectionRunnable runnable)
Description copied from interface:DSLContext
Run aConnectionRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
'sConfiguration.connectionProvider()
.- Specified by:
connection
in interfaceDSLContext
- Parameters:
runnable
- The code running statements against theconnection
.
-
mockResult
public <T> T mockResult(MockDataProvider provider, MockCallable<T> mockable)
Description copied from interface:DSLContext
Run aMockRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
's, and of aMockDataProvider
and return themockable
's outcome.- Specified by:
mockResult
in interfaceDSLContext
-
mock
public void mock(MockDataProvider provider, MockRunnable mockable)
Description copied from interface:DSLContext
Run aMockRunnable
in the context of thisDSLContext
's underlyingScope.configuration()
's, and of aMockDataProvider
.- Specified by:
mock
in interfaceDSLContext
-
renderContext
public RenderContext renderContext()
Description copied from interface:DSLContext
Get a newRenderContext
for the context of thisDSLContext
.This will return an initialised render context as such:
-
RenderContext.castMode()
==DEFAULT
-
Context.declareFields()
== false -
Context.declareTables()
== false -
RenderContext.format()
== false -
RenderContext.paramType()
==ParamType.INDEXED
-
RenderContext.qualify()
== true -
Context.subquery()
== false
- Specified by:
renderContext
in interfaceDSLContext
-
-
render
public String render(QueryPart part)
Description copied from interface:DSLContext
Render a QueryPart in the context of thisDSLContext
.This is the same as calling
renderContext().render(part)
- Specified by:
render
in interfaceDSLContext
- Parameters:
part
- TheQueryPart
to be rendered- Returns:
- The rendered SQL
-
renderNamedParams
public String renderNamedParams(QueryPart part)
Description copied from interface:DSLContext
Render a QueryPart in the context of thisDSLContext
, rendering bind variables as named parameters.This is the same as calling
renderContext().paramType(NAMED).render(part)
- Specified by:
renderNamedParams
in interfaceDSLContext
- Parameters:
part
- TheQueryPart
to be rendered- Returns:
- The rendered SQL
-
renderNamedOrInlinedParams
public String renderNamedOrInlinedParams(QueryPart part)
Description copied from interface:DSLContext
Render a QueryPart in the context of thisDSLContext
, rendering bind variables as named parameters, or inlined parameters if they have no name.This is the same as calling
renderContext().paramType(NAMED_OR_INLINED).render(part)
- Specified by:
renderNamedOrInlinedParams
in interfaceDSLContext
- Parameters:
part
- TheQueryPart
to be rendered- Returns:
- The rendered SQL
-
renderInlined
public String renderInlined(QueryPart part)
Description copied from interface:DSLContext
Render a QueryPart in the context of thisDSLContext
, inlining all bind variables.This is the same as calling
renderContext().inline(true).render(part)
- Specified by:
renderInlined
in interfaceDSLContext
- Parameters:
part
- TheQueryPart
to be rendered- Returns:
- The rendered SQL
-
extractBindValues
public List<Object> extractBindValues(QueryPart part)
Description copied from interface:DSLContext
Retrieve the bind values that will be bound by a givenQueryPart
.The returned
List
is immutable. To modify bind values, useDSLContext.extractParams(QueryPart)
instead.Unlike
DSLContext.extractParams(QueryPart)
, which returns also inlined parameters, this returns only actual bind values that will render an actual bind value as a question mark"?"
- Specified by:
extractBindValues
in interfaceDSLContext
-
extractParams
public Map<String,Param<?>> extractParams(QueryPart part)
Description copied from interface:DSLContext
Get aMap
of named parameters.The
Map
itself is immutable, but theParam
elements allow for modifying bind values on an existingQuery
(or any otherQueryPart
).Bind values created with
DSL.val(Object)
will have their bind index as name.- Specified by:
extractParams
in interfaceDSLContext
- See Also:
Param
,DSL.param(String, Object)
-
extractParam
public Param<?> extractParam(QueryPart part, String name)
Description copied from interface:DSLContext
Get a named parameter from aQueryPart
, provided its name.Bind values created with
DSL.val(Object)
will have their bind index as name.- Specified by:
extractParam
in interfaceDSLContext
- See Also:
Param
,DSL.param(String, Object)
-
bindContext
public BindContext bindContext(PreparedStatement stmt)
Description copied from interface:DSLContext
Get a newBindContext
for the context of thisDSLContext
.This will return an initialised bind context as such:
Context.declareFields()
== falseContext.declareTables()
== false
BindContext for JOOQ INTERNAL USE only. Avoid referencing it directly
- Specified by:
bindContext
in interfaceDSLContext
-
bind
@Deprecated public int bind(QueryPart part, PreparedStatement stmt)
Deprecated.- Specified by:
bind
in interfaceDSLContext
-
attach
public void attach(Attachable... attachables)
Description copied from interface:DSLContext
Attach thisDSLContext
's underlyingScope.configuration()
to some attachables.- Specified by:
attach
in interfaceDSLContext
-
attach
public void attach(Collection<? extends Attachable> attachables)
Description copied from interface:DSLContext
Attach thisDSLContext
's underlyingScope.configuration()
to some attachables.- Specified by:
attach
in interfaceDSLContext
-
loadInto
public <R extends Record> LoaderOptionsStep<R> loadInto(Table<R> table)
Description copied from interface:DSLContext
Create a newLoader
object to load data from a CSV or XML source.- Specified by:
loadInto
in interfaceDSLContext
-
queries
public Queries queries(Query... queries)
Description copied from interface:DSLContext
Wrap a collection of queries.- Specified by:
queries
in interfaceDSLContext
- See Also:
DSL.queries(Query...)
-
queries
public Queries queries(Collection<? extends Query> queries)
Description copied from interface:DSLContext
Wrap a collection of queries.- Specified by:
queries
in interfaceDSLContext
- See Also:
DSL.queries(Collection)
-
begin
public Block begin(Statement... statements)
Description copied from interface:DSLContext
Wrap a collection of statements in an anonymous procedural block.- Specified by:
begin
in interfaceDSLContext
- See Also:
DSL.begin(Statement...)
-
begin
public Block begin(Collection<? extends Statement> statements)
Description copied from interface:DSLContext
Wrap a collection of statements in an anoymous procedural block.- Specified by:
begin
in interfaceDSLContext
- See Also:
DSL.begin(Collection)
-
statements
@Pro public Block statements(Statement... statements)
Description copied from interface:DSLContext
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN .. END;
, unless explicitly needed.- Specified by:
statements
in interfaceDSLContext
- See Also:
DSL.statements(Statement...)
-
statements
@Pro public Block statements(Collection<? extends Statement> statements)
Description copied from interface:DSLContext
Wrap a collection of statements in an anonymous procedural block that does not wrap inBEGIN .. END;
, unless explicitly needed.- Specified by:
statements
in interfaceDSLContext
- See Also:
DSL.statements(Collection)
-
query
public RowCountQuery query(SQL sql)
Description copied from interface:DSLContext
Create a new query holding plain SQL. There must not be any binding variables contained in the SQL.Example:
String sql = "SET SCHEMA 'abc'";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
query
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- A query wrapping the plain SQL
- See Also:
SQL
-
query
public RowCountQuery query(String sql)
Description copied from interface:DSLContext
Create a new query holding plain SQL. There must not be any binding variables contained in the SQL.Example:
String sql = "SET SCHEMA 'abc'";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
query
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- A query wrapping the plain SQL
- See Also:
SQL
-
query
public RowCountQuery query(String sql, Object... bindings)
Description copied from interface:DSLContext
Create a new query holding plain SQL. There must be as many bind variables contained in the SQL, as passed in the bindings parameter.Example:
String sql = "SET SCHEMA 'abc'";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
query
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- A query wrapping the plain SQL
- See Also:
SQL
,DSL.sql(String, Object...)
-
query
public RowCountQuery query(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Create a new query holding plain SQL.Unlike
DSLContext.query(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query query("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will render this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
query
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- A query wrapping the plain SQL
- See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetch
public Result<Record> fetch(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetch
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query. This will never be
null
. - See Also:
SQL
-
fetch
public Result<Record> fetch(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetch
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query. This will never be
null
. - See Also:
SQL
-
fetch
public Result<Record> fetch(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetch
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The results from the executed query. This will never be
null
. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetch
public Result<Record> fetch(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.fetch(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetch("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetch
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The results from the executed query. This will never be
null
. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchLazy
public Cursor<Record> fetchLazy(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.The returned
Cursor
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The cursor. This will never be
null
. - See Also:
SQL
-
fetchLazy
public Cursor<Record> fetchLazy(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.The returned
Cursor
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The cursor. This will never be
null
. - See Also:
SQL
-
fetchLazy
public Cursor<Record> fetchLazy(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
The returned
Cursor
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The cursor. This will never be
null
. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchLazy
public Cursor<Record> fetchLazy(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.The returned
Cursor
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Unlike
DSLContext.fetchLazy(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchLazy("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The cursor. This will never be
null
. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(SQL sql)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(String sql)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(String sql, Object... bindings)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.Unlike
DSLContext.fetchLazy(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchLazy("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, SQL sql)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchAsync
in interfaceDSLContext
sql
- The SQL- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, String sql)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchAsync
in interfaceDSLContext
sql
- The SQL- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, String sql, Object... bindings)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchAsync
in interfaceDSLContext
sql
- The SQLbindings
- The bindings- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, String sql, QueryPart... parts)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.Unlike
DSLContext.fetchLazy(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchLazy("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchAsync
in interfaceDSLContext
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchStream
public Stream<Record> fetchStream(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.The returned
Stream
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query. This is never
null
, even if the database returns noResultSet
- See Also:
SQL
-
fetchStream
public Stream<Record> fetchStream(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.The returned
Stream
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query. This is never
null
, even if the database returns noResultSet
- See Also:
SQL
-
fetchStream
public Stream<Record> fetchStream(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
The returned
Stream
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The results from the executed query. This is never
null
, even if the database returns noResultSet
- See Also:
SQL
,DSL.sql(String, Object...)
-
fetchStream
public Stream<Record> fetchStream(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL and "lazily" return the generated result.The returned
Stream
holds a reference to the executedPreparedStatement
and the associatedResultSet
. Data can be fetched (or iterated over) lazily, fetching records from theResultSet
one by one.Unlike
DSLContext.fetchStream(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchLazy("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The results from the executed query. This is never
null
, even if the database returns noResultSet
- See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchMany
public Results fetchMany(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL, possibly returning several result sets.Example (Sybase ASE):
String sql = "sp_help 'my_table'";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchMany
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results. This will never be
null
. - See Also:
SQL
-
fetchMany
public Results fetchMany(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL, possibly returning several result sets.Example (Sybase ASE):
String sql = "sp_help 'my_table'";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchMany
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results. This will never be
null
. - See Also:
SQL
-
fetchMany
public Results fetchMany(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL, possibly returning several result sets.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Sybase ASE):
String sql = "sp_help 'my_table'";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchMany
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The results. This will never be
null
. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchMany
public Results fetchMany(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL, possibly returning several result sets.Unlike
DSLContext.fetchMany(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchMany("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchMany
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The results. This will never be
null
. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchOne
public Record fetchOne(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The record or
null
, if no record was found. - See Also:
SQL
-
fetchOne
public Record fetchOne(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The record or
null
, if no record was found. - See Also:
SQL
-
fetchOne
public Record fetchOne(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The record or
null
, if no record was found. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchOne
public Record fetchOne(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.fetchOne(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchOne("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The record or
null
, if no record was found. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchSingle
public Record fetchSingle(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The record. This is never
null
. - See Also:
SQL
-
fetchSingle
public Record fetchSingle(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The record. This is never
null
. - See Also:
SQL
-
fetchSingle
public Record fetchSingle(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The record. This is never
null
. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchSingle
public Record fetchSingle(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.fetchOne(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchOne("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The record. This is never
null
. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchOptional
public Optional<Record> fetchOptional(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query
- See Also:
SQL
-
fetchOptional
public Optional<Record> fetchOptional(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query
- See Also:
SQL
-
fetchOptional
public Optional<Record> fetchOptional(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The results from the executed query
- See Also:
SQL
,DSL.sql(String, Object...)
-
fetchOptional
public Optional<Record> fetchOptional(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.fetchOne(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchOne("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The results from the executed query
- See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchValue
public Object fetchValue(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The value or
null
, if no record was found. - See Also:
SQL
-
fetchValue
public Object fetchValue(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The value or
null
, if no record was found. - See Also:
SQL
-
fetchValue
public Object fetchValue(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The value or
null
, if no record was found. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchValue
public Object fetchValue(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.fetchValue(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchOne("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The value or
null
, if no record was found. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchOptionalValue
public Optional<?> fetchOptionalValue(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The result value from the executed query
- See Also:
SQL
-
fetchOptionalValue
public Optional<?> fetchOptionalValue(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The result value from the executed query
- See Also:
SQL
-
fetchOptionalValue
public Optional<?> fetchOptionalValue(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The results from the executed query
- See Also:
SQL
,DSL.sql(String, Object...)
-
fetchOptionalValue
public Optional<?> fetchOptionalValue(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.fetchValue(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchOne("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The results from the executed query
- See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetchValues
public List<?> fetchValues(SQL sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The values. This will never be
null
. - See Also:
SQL
-
fetchValues
public List<?> fetchValues(String sql)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The values. This will never be
null
. - See Also:
SQL
-
fetchValues
public List<?> fetchValues(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The values. This will never be
null
. - See Also:
SQL
,DSL.sql(String, Object...)
-
fetchValues
public List<?> fetchValues(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.fetchValue(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query fetchOne("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The values. This will never be
null
. - See Also:
SQL
,DSL.sql(String, QueryPart...)
-
execute
public int execute(SQL sql)
Description copied from interface:DSLContext
Execute a query holding plain SQL.NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
execute
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query
- See Also:
SQL
-
execute
public int execute(String sql)
Description copied from interface:DSLContext
Execute a query holding plain SQL.NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
execute
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- The results from the executed query
- See Also:
SQL
-
execute
public int execute(String sql, Object... bindings)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
execute
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- The results from the executed query
- See Also:
SQL
,DSL.sql(String, Object...)
-
execute
public int execute(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Execute a new query holding plain SQL.Unlike
DSLContext.execute(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query execute("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will execute this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
execute
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- The results from the executed query
- See Also:
SQL
,DSL.sql(String, QueryPart...)
-
resultQuery
public ResultQuery<Record> resultQuery(SQL sql)
Description copied from interface:DSLContext
Create a new query holding plain SQL.There must not be any bind variables contained in the SQL
Use this method, when you want to take advantage of the many ways to fetch results in jOOQ, using
ResultQuery
. Some examples:ResultQuery.fetchLazy()
Open a cursor and fetch records one by one ResultQuery.fetchInto(Class)
Fetch records into a custom POJO (optionally annotated with JPA annotations) ResultQuery.fetchInto(RecordHandler)
Fetch records into a custom callback (similar to Spring's RowMapper) Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
resultQuery
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- An executable query
- See Also:
SQL
-
resultQuery
public ResultQuery<Record> resultQuery(String sql)
Description copied from interface:DSLContext
Create a new query holding plain SQL.There must not be any bind variables contained in the SQL
Use this method, when you want to take advantage of the many ways to fetch results in jOOQ, using
ResultQuery
. Some examples:ResultQuery.fetchLazy()
Open a cursor and fetch records one by one ResultQuery.fetchInto(Class)
Fetch records into a custom POJO (optionally annotated with JPA annotations) ResultQuery.fetchInto(RecordHandler)
Fetch records into a custom callback (similar to Spring's RowMapper) Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
resultQuery
in interfaceDSLContext
- Parameters:
sql
- The SQL- Returns:
- An executable query
- See Also:
SQL
-
resultQuery
public ResultQuery<Record> resultQuery(String sql, Object... bindings)
Description copied from interface:DSLContext
Create a new query holding plain SQL.There must be as many bind variables contained in the SQL, as passed in the bindings parameter
Use this method, when you want to take advantage of the many ways to fetch results in jOOQ, using
ResultQuery
. Some examples:ResultQuery.fetchLazy()
Open a cursor and fetch records one by one ResultQuery.fetchInto(Class)
Fetch records into a custom POJO (optionally annotated with JPA annotations) ResultQuery.fetchInto(RecordHandler)
Fetch records into a custom callback (similar to Spring's RowMapper) Example (Postgres):
Example (SQLite):String sql = "FETCH ALL IN \"<unnamed cursor 1>\"";
String sql = "pragma table_info('my_table')";
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
resultQuery
in interfaceDSLContext
- Parameters:
sql
- The SQLbindings
- The bindings- Returns:
- A query wrapping the plain SQL
- See Also:
SQL
,DSL.sql(String, Object...)
-
resultQuery
public ResultQuery<Record> resultQuery(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Create a new query holding plain SQL.Unlike
DSLContext.resultQuery(String, Object...)
, the SQL passed to this method should not contain any bind variables. Instead, you can passQueryPart
objects to the method which will be rendered at indexed locations of your SQL string as such:// The following query resultQuery("select {0}, {1} from {2}", val(1), inline("test"), name("DUAL")); // Will render this SQL by default, using SQLDialect.ORACLE: select ?, 'test' from "DUAL"
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses! One way to escape literals is to use
DSL.name(String...)
and similar methods- Specified by:
resultQuery
in interfaceDSLContext
- Parameters:
sql
- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts
- TheQueryPart
objects that are rendered at the {numbered placeholder} locations- Returns:
- A query wrapping the plain SQL
- See Also:
SQL
,DSL.sql(String, QueryPart...)
-
fetch
public Result<Record> fetch(ResultSet rs)
Description copied from interface:DSLContext
Fetch all data from a JDBCResultSet
and transform it to a jOOQResult
.After fetching all data, the JDBC ResultSet will be closed.
Use
DSLContext.fetchLazy(ResultSet)
, to fetch oneRecord
at a time, instead of load the entireResultSet
into a jOOQResult
at once.- Specified by:
fetch
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The resulting jOOQ Result. This will never be
null
.
-
fetch
public Result<Record> fetch(ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Fetch all data from a JDBCResultSet
and transform it to a jOOQResult
.After fetching all data, the JDBC ResultSet will be closed.
Use
DSLContext.fetchLazy(ResultSet)
, to fetch oneRecord
at a time, instead of load the entireResultSet
into a jOOQResult
at once.The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetch
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The resulting jOOQ Result. This will never be
null
.
-
fetch
public Result<Record> fetch(ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Fetch all data from a JDBCResultSet
and transform it to a jOOQResult
.After fetching all data, the JDBC ResultSet will be closed.
Use
DSLContext.fetchLazy(ResultSet)
, to fetch oneRecord
at a time, instead of load the entireResultSet
into a jOOQResult
at once.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetch
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The resulting jOOQ Result. This will never be
null
.
-
fetch
public Result<Record> fetch(ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Fetch all data from a JDBCResultSet
and transform it to a jOOQResult
.After fetching all data, the JDBC ResultSet will be closed.
Use
DSLContext.fetchLazy(ResultSet)
, to fetch oneRecord
at a time, instead of load the entireResultSet
into a jOOQResult
at once.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetch
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The resulting jOOQ Result. This will never be
null
.
-
fetchOne
public Record fetchOne(ResultSet rs)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The record or
null
, if no record was found.
-
fetchOne
public Record fetchOne(ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The record or
null
, if no record was found.
-
fetchOne
public Record fetchOne(ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The record or
null
, if no record was found.
-
fetchOne
public Record fetchOne(ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The record. This is never
null
.
-
fetchSingle
public Record fetchSingle(ResultSet rs)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The record or
null
, if no record was found.
-
fetchSingle
public Record fetchSingle(ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The record. This is never
null
.
-
fetchSingle
public Record fetchSingle(ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The record. This is never
null
.
-
fetchSingle
public Record fetchSingle(ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The record. This is never
null
.
-
fetchOptional
public Optional<Record> fetchOptional(ResultSet rs)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The resulting jOOQ record
-
fetchOptional
public Optional<Record> fetchOptional(ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The resulting jOOQ record
-
fetchOptional
public Optional<Record> fetchOptional(ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The resulting jOOQ record
-
fetchOptional
public Optional<Record> fetchOptional(ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and transform it to a jOOQRecord
.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The resulting jOOQ record
-
fetchValue
public Object fetchValue(ResultSet rs)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The value or
null
, if no record was found.
-
fetchValue
public <T> T fetchValue(ResultSet rs, Field<T> field)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
field
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfield
- The field to use in the desired output- Returns:
- The value or
null
, if no record was found.
-
fetchValue
public <T> T fetchValue(ResultSet rs, DataType<T> type)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
type
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtype
- The data type to use in the desired output- Returns:
- The value or
null
, if no record was found.
-
fetchValue
public <T> T fetchValue(ResultSet rs, Class<T> type)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
type
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtype
- The data types to use in the desired output- Returns:
- The value or
null
, if no record was found.
-
fetchOptionalValue
public Optional<?> fetchOptionalValue(ResultSet rs)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The resulting value
-
fetchOptionalValue
public <T> Optional<T> fetchOptionalValue(ResultSet rs, Field<T> field)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
field
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfield
- The field to use in the desired output- Returns:
- The resulting value
-
fetchOptionalValue
public <T> Optional<T> fetchOptionalValue(ResultSet rs, DataType<T> type)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
type
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtype
- The data type to use in the desired output- Returns:
- The resulting value
-
fetchOptionalValue
public <T> Optional<T> fetchOptionalValue(ResultSet rs, Class<T> type)
Description copied from interface:DSLContext
Fetch a record from a JDBCResultSet
and return the only contained value.This will internally fetch all records and throw an exception if there was more than one resulting record.
The additional
type
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtype
- The data types to use in the desired output- Returns:
- The resulting value
-
fetchValues
public List<?> fetchValues(ResultSet rs)
Description copied from interface:DSLContext
Fetch a result from a JDBCResultSet
and return the only contained column's values.- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The values. This will never be
null
.
-
fetchValues
public <T> List<T> fetchValues(ResultSet rs, Field<T> field)
Description copied from interface:DSLContext
Fetch a result from a JDBCResultSet
and return the only contained column's values.The additional
field
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfield
- The field to use in the desired output- Returns:
- The values. This will never be
null
.
-
fetchValues
public <T> List<T> fetchValues(ResultSet rs, DataType<T> type)
Description copied from interface:DSLContext
Fetch a result from a JDBCResultSet
and return the only contained column's values.The additional
type
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtype
- The data type to use in the desired output- Returns:
- The values. This will never be
null
.
-
fetchValues
public <T> List<T> fetchValues(ResultSet rs, Class<T> type)
Description copied from interface:DSLContext
Fetch a result from a JDBCResultSet
and return the only contained column's values.The additional
type
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtype
- The data types to use in the desired output- Returns:
- The values. This will never be
null
.
-
fetchLazy
public Cursor<Record> fetchLazy(ResultSet rs)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQCursor
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The cursor. This will never be
null
.
-
fetchLazy
public Cursor<Record> fetchLazy(ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQCursor
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The cursor. This will never be
null
.
-
fetchLazy
public Cursor<Record> fetchLazy(ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQCursor
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The cursor. This will never be
null
.
-
fetchLazy
public Cursor<Record> fetchLazy(ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQCursor
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The cursor. This will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(ResultSet rs)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, ResultSet rs)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.- Specified by:
fetchAsync
in interfaceDSLContext
rs
- The JDBC ResultSet to fetch data from- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchAsync
in interfaceDSLContext
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchAsync
in interfaceDSLContext
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public CompletionStage<Result<Record>> fetchAsync(Executor executor, ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchAsync
in interfaceDSLContext
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchStream
public Stream<Record> fetchStream(ResultSet rs)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQStream
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data from- Returns:
- The resulting stream
-
fetchStream
public Stream<Record> fetchStream(ResultSet rs, Field<?>... fields)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQStream
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.The additional
fields
argument is used by jOOQ to coerce field names and data types to the desired output- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromfields
- The fields to use in the desired output- Returns:
- The resulting stream
-
fetchStream
public Stream<Record> fetchStream(ResultSet rs, DataType<?>... types)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQStream
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The resulting stream
-
fetchStream
public Stream<Record> fetchStream(ResultSet rs, Class<?>... types)
Description copied from interface:DSLContext
Wrap a JDBCResultSet
into a jOOQStream
.Use
DSLContext.fetch(ResultSet)
, to load the entireResultSet
into a jOOQResult
at once.The additional
types
argument is used by jOOQ to coerce data types to the desired output- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
rs
- The JDBC ResultSet to fetch data fromtypes
- The data types to use in the desired output- Returns:
- The resulting stream
-
fetchFromTXT
public Result<Record> fetchFromTXT(String string)
Description copied from interface:DSLContext
Fetch all data from a formatted string.The supplied string is supposed to be formatted in a human-readable way. This is the same as calling
fetchFromTXT(string, "{null}")
- Specified by:
fetchFromTXT
in interfaceDSLContext
- Parameters:
string
- The formatted string- Returns:
- The transformed result. This will never be
null
. - See Also:
DSLContext.fetchFromTXT(String, String)
-
fetchFromTXT
public Result<Record> fetchFromTXT(String string, String nullLiteral)
Description copied from interface:DSLContext
Fetch all data from a formatted string.This method supports parsing results from two types of human-readable formats:
The jOOQ
Formattable.format()
This format is recognised by the fact that the first line starts with a "plus" sign:
This method will decode the above formatted string according to the following rules:+-----+-----+--------------------------+ |COL1 |COL2 |COL3 containing whitespace| +-----+-----+--------------------------+ |val1 |1 |some text | |val2 | 2 | more text | +-----+-----+--------------------------+
- The number of columns is defined by the number of dash groups in the first line. Groups are separated by exactly one "plus" sign
- The column types are
VARCHAR(N)
whereN = number of dashes per dash group
- The column names are defined by the trimmed text contained in the second row
- The data is defined by the trimmed text contained in the subsequent rows
The H2 database test data format
The supplied string is supposed to be formatted in the following, human-readable way:
This method will decode the above formatted string according to the following rules:COL1 COL2 COL3 containing whitespace ----- ---- -------------------------- val1 1 some text val2 2 more text
- The number of columns is defined by the number of dash groups in the second line. Groups are separated by space(s)
- The column types are
VARCHAR(N)
whereN = number of dashes per dash group
- The column names are defined by the trimmed text contained in the first row
- The data is defined by the trimmed text contained in the subsequent rows
Both parsing methods
Both parsing methods make no assumption about the resulting data types. Instead, all data is string-based.
- Specified by:
fetchFromTXT
in interfaceDSLContext
- Parameters:
string
- The formatted stringnullLiteral
- The string literal to be used asnull
value.- Returns:
- The transformed result. This will never be
null
.
-
fetchFromHTML
public Result<Record> fetchFromHTML(String string)
Description copied from interface:DSLContext
Convert an HTML table into a jOOQResult
.This is the inverse operation of
Formattable.formatHTML()
. It works according to the following parsing rules:- The input is expected to be well-formed XML. XHTML conformance is not
required - i.e. unknown elements / attributes, or elements / attributes
not specified here, such as
<caption>
,<thead>
,<tbody>
are simply ignored. - The surrounding
<table>
element is optional, but it may appear only once - A single row containing table headings
<th>
is allowed. Further rows containing table headings are ignored. Table headings define field names. In the absence of table headings, field names are generated. - The first row
<tr>
specifies the number of columns in the table (regardless if it contains table headings or not). Subsequent rows containing less columns will be padded. Subsequent rows containing more columns will be truncated. - Comments are ignored
- Nested tables are not supported
Ideal input looks like this:
<table> <tr><th>COL1</th><th>COL2</th></tr> <tr><td>1</td><td>a</td></tr> <tr><td>2</td><td>b</td></tr> </table>
- Specified by:
fetchFromHTML
in interfaceDSLContext
- Parameters:
string
- The HTML-formatted string.- Returns:
- The transformed result. This will never be
null
.
- The input is expected to be well-formed XML. XHTML conformance is not
required - i.e. unknown elements / attributes, or elements / attributes
not specified here, such as
-
fetchFromCSV
public Result<Record> fetchFromCSV(String string)
Description copied from interface:DSLContext
Fetch all data from a CSV string.This is the same as calling
fetchFromCSV(string, ',')
and the inverse of callingFormattable.formatCSV()
. The first row of the CSV data is required to hold field name information. Subsequent rows may contain data, which is interpreted asString
. Use the various conversion methods to retrieve other data types from theResult
:Result.getValues(Field, Class)
Result.getValues(int, Class)
Result.getValues(String, Class)
Result.getValues(Field, Converter)
Result.getValues(int, Converter)
Result.getValues(String, Converter)
Missing values result in
null
. Empty values result in emptyStrings
- Specified by:
fetchFromCSV
in interfaceDSLContext
- Parameters:
string
- The CSV string- Returns:
- The transformed result. This will never be
null
. - See Also:
DSLContext.fetchFromCSV(String, char)
-
fetchFromCSV
public Result<Record> fetchFromCSV(String string, char delimiter)
Description copied from interface:DSLContext
Fetch all data from a CSV string.This is inverse of calling
Formattable.formatCSV(char)
. The first row of the CSV data is required to hold field name information. Subsequent rows may contain data, which is interpreted asString
. Use the various conversion methods to retrieve other data types from theResult
:Result.getValues(Field, Class)
Result.getValues(int, Class)
Result.getValues(String, Class)
Result.getValues(Field, Converter)
Result.getValues(int, Converter)
Result.getValues(String, Converter)
Missing values result in
null
. Empty values result in emptyStrings
- Specified by:
fetchFromCSV
in interfaceDSLContext
- Parameters:
string
- The CSV stringdelimiter
- The delimiter to expect between records- Returns:
- The transformed result. This will never be
null
. - See Also:
DSLContext.fetchFromCSV(String)
,DSLContext.fetchFromStringData(List)
-
fetchFromCSV
public Result<Record> fetchFromCSV(String string, boolean header)
Description copied from interface:DSLContext
Fetch all data from a CSV string.This is the same as calling
fetchFromCSV(string, ',')
and the inverse of callingFormattable.formatCSV(boolean)
. Rows may contain data, which is interpreted asString
. Use the various conversion methods to retrieve other data types from theResult
:Result.getValues(Field, Class)
Result.getValues(int, Class)
Result.getValues(String, Class)
Result.getValues(Field, Converter)
Result.getValues(int, Converter)
Result.getValues(String, Converter)
Missing values result in
null
. Empty values result in emptyStrings
- Specified by:
fetchFromCSV
in interfaceDSLContext
- Parameters:
string
- The CSV stringheader
- Whether to parse the first line as a CSV header line- Returns:
- The transformed result. This will never be
null
. - See Also:
DSLContext.fetchFromCSV(String, char)
-
fetchFromCSV
public Result<Record> fetchFromCSV(String string, boolean header, char delimiter)
Description copied from interface:DSLContext
Fetch all data from a CSV string.This is inverse of calling
Formattable.formatCSV(boolean, char)
. Rows may contain data, which are interpreted asString
. Use the various conversion methods to retrieve other data types from theResult
:Result.getValues(Field, Class)
Result.getValues(int, Class)
Result.getValues(String, Class)
Result.getValues(Field, Converter)
Result.getValues(int, Converter)
Result.getValues(String, Converter)
Missing values result in
null
. Empty values result in emptyStrings
- Specified by:
fetchFromCSV
in interfaceDSLContext
- Parameters:
string
- The CSV stringheader
- Whether to parse the first line as a CSV header linedelimiter
- The delimiter to expect between records- Returns:
- The transformed result. This will never be
null
. - See Also:
DSLContext.fetchFromCSV(String)
,DSLContext.fetchFromStringData(List)
-
fetchFromJSON
public Result<Record> fetchFromJSON(String string)
Description copied from interface:DSLContext
Fetch all data from a JSON string.This is the inverse of calling
Formattable.formatJSON()
. Use the various conversion methods to retrieve other data types from theResult
:-
Result.getValues(Field, Class)
-
Result.getValues(int, Class)
-
Result.getValues(String, Class)
-
Result.getValues(Field, Converter)
-
Result.getValues(int, Converter)
-
Result.getValues(String, Converter)
Missing values result in
null
. Empty values result in emptyStrings
- Specified by:
fetchFromJSON
in interfaceDSLContext
- Parameters:
string
- The JSON string- Returns:
- The transformed result. This will never be
null
.
-
-
fetchFromXML
public Result<Record> fetchFromXML(String string)
Description copied from interface:DSLContext
Fetch all data from an XML string.This is the inverse of calling
Formattable.formatXML()
. Use the various conversion methods to retrieve other data types from theResult
:-
Result.getValues(Field, Class)
-
Result.getValues(int, Class)
-
Result.getValues(String, Class)
-
Result.getValues(Field, Converter)
-
Result.getValues(int, Converter)
-
Result.getValues(String, Converter)
Missing values result in
null
. Empty values result in emptyStrings
- Specified by:
fetchFromXML
in interfaceDSLContext
- Parameters:
string
- The XML string- Returns:
- The transformed result. This will never be
null
.
-
-
fetchFromStringData
public Result<Record> fetchFromStringData(String[]... strings)
Description copied from interface:DSLContext
Fetch all data from a list of strings.This is used by methods such as
The first element of the argument list should contain column names. Subsequent elements contain actual data. The degree of all arrays contained in the argument should be the same, although this is not a requirement. jOOQ will ignore excess data, and fill missing data withnull
.- Specified by:
fetchFromStringData
in interfaceDSLContext
- Parameters:
strings
- The data to be transformed into aResult
- Returns:
- The transformed result. This will never be
null
. - See Also:
DSLContext.fetchFromStringData(List)
-
fetchFromStringData
public Result<Record> fetchFromStringData(List<String[]> strings)
Description copied from interface:DSLContext
Fetch all data from a list of strings.This is used by methods such as
The first element of the argument list should contain column names. Subsequent elements contain actual data. The degree of all arrays contained in the argument should be the same, although this is not a requirement. jOOQ will ignore excess data, and fill missing data withnull
.- Specified by:
fetchFromStringData
in interfaceDSLContext
- Parameters:
strings
- The data to be transformed into aResult
- Returns:
- The transformed result. This will never be
null
.
-
fetchFromStringData
public Result<Record> fetchFromStringData(List<String[]> strings, boolean header)
Description copied from interface:DSLContext
Fetch all data from a list of strings.This is used by methods such as
The degree of all arrays contained in the argument should be the same, although this is not a requirement. jOOQ will ignore excess data, and fill missing data withnull
.- Specified by:
fetchFromStringData
in interfaceDSLContext
- Parameters:
strings
- The data to be transformed into aResult
header
- Whether to interpret the first line as a set of column names.- Returns:
- The transformed result. This will never be
null
.
-
with
public WithAsStep with(String alias)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String)
for strictly non-recursive CTE andDSLContext.withRecursive(String)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep with(String alias, String... fieldAliases)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep with(Name alias)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(Name)
for strictly non-recursive CTE andDSLContext.withRecursive(Name)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep with(Name alias, Name... fieldAliases)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(Name, Name...)
for strictly non-recursive CTE andDSLContext.withRecursive(Name, Name...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep with(String alias, Function<? super Field<?>,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.This works in a similar way as
DSLContext.with(String, String...)
, except that all column names are produced by a function that receives the CTE'sSelect
columns as input.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep with(String alias, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.This works in a similar way as
DSLContext.with(String, String...)
, except that all column names are produced by a function that receives the CTE'sSelect
columns and their column indexes as input.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep1 with(String alias, String fieldAlias1)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep2 with(String alias, String fieldAlias1, String fieldAlias2)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep3 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep4 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep5 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep6 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep7 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep8 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep9 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep10 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep11 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep12 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep13 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep14 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep15 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep16 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep17 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep18 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep19 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep20 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep21 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep22 with(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21, String fieldAlias22)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep1 with(Name alias, Name fieldAlias1)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep2 with(Name alias, Name fieldAlias1, Name fieldAlias2)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep3 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep4 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep5 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep6 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep7 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep8 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep9 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep10 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep11 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep12 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep13 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep14 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep15 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep16 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep17 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep18 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep19 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep20 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep21 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithAsStep22 with(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21, Name fieldAlias22)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
with
public WithStep with(CommonTableExpression<?>... tables)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.Reusable
CommonTableExpression
types can be constructed throughThe
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(CommonTableExpression...)
for strictly non-recursive CTE andDSLContext.withRecursive(CommonTableExpression...)
for strictly recursive CTE.- Specified by:
with
in interfaceDSLContext
-
withRecursive
public WithAsStep withRecursive(String alias)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String)
for strictly non-recursive CTE andDSLContext.withRecursive(String)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep withRecursive(String alias, String... fieldAliases)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep withRecursive(Name alias)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(Name)
for strictly non-recursive CTE andDSLContext.withRecursive(Name)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep withRecursive(Name alias, Name... fieldAliases)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(Name, Name...)
for strictly non-recursive CTE andDSLContext.withRecursive(Name, Name...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep withRecursive(String alias, Function<? super Field<?>,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.This works in a similar way as
DSLContext.with(String, String...)
, except that all column names are produced by a function that receives the CTE'sSelect
columns as input.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep withRecursive(String alias, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.This works in a similar way as
DSLContext.with(String, String...)
, except that all column names are produced by a function that receives the CTE'sSelect
columns and their column indexes as input.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep1 withRecursive(String alias, String fieldAlias1)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep2 withRecursive(String alias, String fieldAlias1, String fieldAlias2)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep3 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep4 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep5 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep6 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep7 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep8 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep9 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep10 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep11 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep12 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep13 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep14 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep15 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep16 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep17 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep18 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep19 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep20 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep21 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep22 withRecursive(String alias, String fieldAlias1, String fieldAlias2, String fieldAlias3, String fieldAlias4, String fieldAlias5, String fieldAlias6, String fieldAlias7, String fieldAlias8, String fieldAlias9, String fieldAlias10, String fieldAlias11, String fieldAlias12, String fieldAlias13, String fieldAlias14, String fieldAlias15, String fieldAlias16, String fieldAlias17, String fieldAlias18, String fieldAlias19, String fieldAlias20, String fieldAlias21, String fieldAlias22)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep1 withRecursive(Name alias, Name fieldAlias1)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep2 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep3 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep4 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep5 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep6 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep7 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep8 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep9 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep10 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep11 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep12 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep13 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep14 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep15 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep16 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep17 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep18 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep19 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep20 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep21 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithAsStep22 withRecursive(Name alias, Name fieldAlias1, Name fieldAlias2, Name fieldAlias3, Name fieldAlias4, Name fieldAlias5, Name fieldAlias6, Name fieldAlias7, Name fieldAlias8, Name fieldAlias9, Name fieldAlias10, Name fieldAlias11, Name fieldAlias12, Name fieldAlias13, Name fieldAlias14, Name fieldAlias15, Name fieldAlias16, Name fieldAlias17, Name fieldAlias18, Name fieldAlias19, Name fieldAlias20, Name fieldAlias21, Name fieldAlias22)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.The
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(String, String...)
for strictly non-recursive CTE andDSLContext.withRecursive(String, String...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
withRecursive
public WithStep withRecursive(CommonTableExpression<?>... tables)
Description copied from interface:DSLContext
Create aWITH
clause to supply subsequentSELECT
,UPDATE
,INSERT
,DELETE
, andMERGE
statements withCommonTableExpression
s.Reusable
CommonTableExpression
types can be constructed throughThe
RECURSIVE
keyword may be optional or unsupported in some databases, in case of which it will not be rendered. For optimal database interoperability and readability, however, it is suggested that you useDSLContext.with(CommonTableExpression...)
for strictly non-recursive CTE andDSLContext.withRecursive(CommonTableExpression...)
for strictly recursive CTE.- Specified by:
withRecursive
in interfaceDSLContext
-
selectFrom
public <R extends Record> SelectWhereStep<R> selectFrom(Table<R> table)
Description copied from interface:DSLContext
Create a new DSL select statement, projecting the known columns from a table.This will project the known columns from the argument table querying
TableLike.fields()
. If no known columns are available (e.g. because the table has been created usingDSL.table(String)
), thenSELECT *
is projected.Example:
SELECT table.col1, table.col2 FROM table
- Specified by:
selectFrom
in interfaceDSLContext
-
selectFrom
public SelectWhereStep<Record> selectFrom(Name table)
Description copied from interface:DSLContext
Create a new DSL select statement, projecting*
.Without knowing any columns from the argument table (see
DSLContext.selectFrom(Table)
), this will projectSELECT *
.Example:
SELECT * FROM table
- Specified by:
selectFrom
in interfaceDSLContext
- See Also:
DSL.table(Name)
-
selectFrom
public SelectWhereStep<Record> selectFrom(SQL sql)
Description copied from interface:DSLContext
Create a new DSL select statement, projecting*
.Without knowing any columns from the argument table (see
DSLContext.selectFrom(Table)
), this will projectSELECT *
.Example:
SELECT * FROM table
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
selectFrom
in interfaceDSLContext
- See Also:
DSL.table(SQL)
,SQL
-
selectFrom
public SelectWhereStep<Record> selectFrom(String sql)
Description copied from interface:DSLContext
Create a new DSL select statement, projecting*
.Without knowing any columns from the argument table (see
DSLContext.selectFrom(Table)
), this will projectSELECT *
.Example:
SELECT * FROM table
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
selectFrom
in interfaceDSLContext
- See Also:
DSL.table(String)
,DSL.sql(String)
,SQL
-
selectFrom
public SelectWhereStep<Record> selectFrom(String sql, Object... bindings)
Description copied from interface:DSLContext
Create a new DSL select statement, projecting*
.Without knowing any columns from the argument table (see
DSLContext.selectFrom(Table)
), this will projectSELECT *
.Example:
SELECT * FROM table
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
selectFrom
in interfaceDSLContext
- See Also:
DSL.table(String, Object...)
,DSL.sql(String, Object...)
,SQL
-
selectFrom
public SelectWhereStep<Record> selectFrom(String sql, QueryPart... parts)
Description copied from interface:DSLContext
Create a new DSL select statement, projecting*
.Without knowing any columns from the argument table (see
DSLContext.selectFrom(Table)
), this will projectSELECT *
.Example:
SELECT * FROM table
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
- Specified by:
selectFrom
in interfaceDSLContext
- See Also:
DSL.table(String, QueryPart...)
,DSL.sql(String, QueryPart...)
,SQL
-
select
public SelectSelectStep<Record> select(Collection<? extends SelectFieldOrAsterisk> fields)
Description copied from interface:DSLContext
Create a new DSL select statement.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(Collection)
instead.Example:
DSLContext create = DSL.using(configuration); create.select(fields) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
Note that passing an empty collection conveniently produces
SELECT *
semantics, i.e. it:- Renders
SELECT tab1.col1, tab1.col2, ..., tabN.colN
if all columns are known - Renders
SELECT *
if not all columns are known, e.g. when using plain SQL
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.select(Collection)
- Renders
-
select
public SelectSelectStep<Record> select(SelectFieldOrAsterisk... fields)
Description copied from interface:DSLContext
Create a new DSL select statement.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectFieldOrAsterisk...)
instead.Example:
DSLContext create = DSL.using(configuration); create.select(field1, field2) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2) .execute();
Note that passing an empty collection conveniently produces
SELECT *
semantics, i.e. it:- Renders
SELECT tab1.col1, tab1.col2, ..., tabN.colN
if all columns are known - Renders
SELECT *
if not all columns are known, e.g. when using plain SQL
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.select(SelectFieldOrAsterisk...)
- Renders
-
select
public <T1> SelectSelectStep<Record1<T1>> select(SelectField<T1> field1)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byField.in(Select)
,Field.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField)
instead.Example:
using(configuration) .select(field1) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2> SelectSelectStep<Record2<T1,T2>> select(SelectField<T1> field1, SelectField<T2> field2)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow2.in(Select)
,Row2.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3> SelectSelectStep<Record3<T1,T2,T3>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow3.in(Select)
,Row3.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4> SelectSelectStep<Record4<T1,T2,T3,T4>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow4.in(Select)
,Row4.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, field4) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5> SelectSelectStep<Record5<T1,T2,T3,T4,T5>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow5.in(Select)
,Row5.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, field4, field5) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6> SelectSelectStep<Record6<T1,T2,T3,T4,T5,T6>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow6.in(Select)
,Row6.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field5, field6) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7> SelectSelectStep<Record7<T1,T2,T3,T4,T5,T6,T7>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow7.in(Select)
,Row7.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field6, field7) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8> SelectSelectStep<Record8<T1,T2,T3,T4,T5,T6,T7,T8>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow8.in(Select)
,Row8.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field7, field8) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9> SelectSelectStep<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow9.in(Select)
,Row9.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field8, field9) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> SelectSelectStep<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow10.in(Select)
,Row10.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field9, field10) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow11.in(Select)
,Row11.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field10, field11) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> SelectSelectStep<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow12.in(Select)
,Row12.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field11, field12) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> SelectSelectStep<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow13.in(Select)
,Row13.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field12, field13) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> SelectSelectStep<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow14.in(Select)
,Row14.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field13, field14) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> SelectSelectStep<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow15.in(Select)
,Row15.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field14, field15) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> SelectSelectStep<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow16.in(Select)
,Row16.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field15, field16) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> SelectSelectStep<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow17.in(Select)
,Row17.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field16, field17) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> SelectSelectStep<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow18.in(Select)
,Row18.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field17, field18) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> SelectSelectStep<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow19.in(Select)
,Row19.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field18, field19) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> SelectSelectStep<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow20.in(Select)
,Row20.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field19, field20) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> SelectSelectStep<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow21.in(Select)
,Row21.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field20, field21) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
select
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> SelectSelectStep<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>> select(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21, SelectField<T22> field22)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.select(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow22.in(Select)
,Row22.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.select(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .select(field1, field2, field3, .., field21, field22) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
select
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public SelectSelectStep<Record> selectDistinct(Collection<? extends SelectFieldOrAsterisk> fields)
Description copied from interface:DSLContext
Create a new DSL select statement.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(Collection)
instead.Example:
DSLContext create = DSL.using(configuration); create.selectDistinct(fields) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
Note that passing an empty collection conveniently produces
SELECT DISTINCT *
semantics, i.e. it:- Renders
SELECT DISTINCT tab1.col1, tab1.col2, ..., tabN.colN
if all columns are known - Renders
SELECT DISTINCT *
if not all columns are known, e.g. when using plain SQL
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(Collection)
- Renders
-
selectDistinct
public SelectSelectStep<Record> selectDistinct(SelectFieldOrAsterisk... fields)
Description copied from interface:DSLContext
Create a new DSL select statement.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectFieldOrAsterisk...)
instead.Example:
DSLContext create = DSL.using(configuration); create.selectDistinct(field1, field2) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
Note that passing an empty collection conveniently produces
SELECT DISTINCT *
semantics, i.e. it:- Renders
SELECT DISTINCT tab1.col1, tab1.col2, ..., tabN.colN
if all columns are known - Renders
SELECT DISTINCT *
if not all columns are known, e.g. when using plain SQL
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
- Renders
-
selectDistinct
public <T1> SelectSelectStep<Record1<T1>> selectDistinct(SelectField<T1> field1)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byField.in(Select)
,Field.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField)
instead.Example:
using(configuration) .selectDistinct(field1) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2> SelectSelectStep<Record2<T1,T2>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow2.in(Select)
,Row2.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3> SelectSelectStep<Record3<T1,T2,T3>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow3.in(Select)
,Row3.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4> SelectSelectStep<Record4<T1,T2,T3,T4>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow4.in(Select)
,Row4.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, field4) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5> SelectSelectStep<Record5<T1,T2,T3,T4,T5>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow5.in(Select)
,Row5.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, field4, field5) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6> SelectSelectStep<Record6<T1,T2,T3,T4,T5,T6>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow6.in(Select)
,Row6.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field5, field6) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7> SelectSelectStep<Record7<T1,T2,T3,T4,T5,T6,T7>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow7.in(Select)
,Row7.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field6, field7) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8> SelectSelectStep<Record8<T1,T2,T3,T4,T5,T6,T7,T8>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow8.in(Select)
,Row8.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field7, field8) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9> SelectSelectStep<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow9.in(Select)
,Row9.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field8, field9) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> SelectSelectStep<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow10.in(Select)
,Row10.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field9, field10) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> SelectSelectStep<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow11.in(Select)
,Row11.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field10, field11) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> SelectSelectStep<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow12.in(Select)
,Row12.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field11, field12) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> SelectSelectStep<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow13.in(Select)
,Row13.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field12, field13) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> SelectSelectStep<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow14.in(Select)
,Row14.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field13, field14) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> SelectSelectStep<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow15.in(Select)
,Row15.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field14, field15) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> SelectSelectStep<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow16.in(Select)
,Row16.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field15, field16) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> SelectSelectStep<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow17.in(Select)
,Row17.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field16, field17) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> SelectSelectStep<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow18.in(Select)
,Row18.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field17, field18) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> SelectSelectStep<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow19.in(Select)
,Row19.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field18, field19) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> SelectSelectStep<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow20.in(Select)
,Row20.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field19, field20) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> SelectSelectStep<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow21.in(Select)
,Row21.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field20, field21) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectDistinct
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> SelectSelectStep<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>> selectDistinct(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21, SelectField<T22> field22)
Description copied from interface:DSLContext
Create a new DSL select statement.This is the same as
DSLContext.selectDistinct(SelectFieldOrAsterisk...)
, except that it declares additional record-level typesafety, which is needed byRow22.in(Select)
,Row22.equal(Select)
and other predicate building methods taking subselect arguments.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectDistinct(SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField, SelectField)
instead.Example:
using(configuration) .selectDistinct(field1, field2, field3, .., field21, field22) .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectDistinct
in interfaceDSLContext
- See Also:
DSL.selectDistinct(SelectFieldOrAsterisk...)
,DSLContext.selectDistinct(SelectFieldOrAsterisk...)
-
selectZero
public SelectSelectStep<Record1<Integer>> selectZero()
Description copied from interface:DSLContext
Create a new DSL select statement for a constant0
literal.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectZero()
instead.Example:
DSLContext create = DSL.using(configuration); create.selectZero() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectZero
in interfaceDSLContext
- See Also:
DSL.zero()
,DSL.selectZero()
-
selectOne
public SelectSelectStep<Record1<Integer>> selectOne()
Description copied from interface:DSLContext
Create a new DSL select statement for a constant1
literal.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectOne()
instead.Example:
DSLContext create = DSL.using(configuration); create.selectOne() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectOne
in interfaceDSLContext
- See Also:
DSL.one()
,DSL.selectOne()
-
selectCount
public SelectSelectStep<Record1<Integer>> selectCount()
Description copied from interface:DSLContext
Create a new DSL select statement forCOUNT(*)
.This creates an attached, renderable and executable
SELECT
statement from thisDSLContext
. If you don't need to render or execute thisSELECT
statement (e.g. because you want to create a subselect), consider using the staticDSL.selectCount()
instead.Example:
DSLContext create = DSL.using(configuration); create.selectCount() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2);
- Specified by:
selectCount
in interfaceDSLContext
- See Also:
DSL.selectCount()
-
selectQuery
public SelectQuery<Record> selectQuery()
Description copied from interface:DSLContext
Create a newSelectQuery
- Specified by:
selectQuery
in interfaceDSLContext
-
selectQuery
public <R extends Record> SelectQuery<R> selectQuery(TableLike<R> table)
Description copied from interface:DSLContext
Create a newSelectQuery
- Specified by:
selectQuery
in interfaceDSLContext
- Parameters:
table
- The table to select data from- Returns:
- The new
SelectQuery
-
insertQuery
public <R extends Record> InsertQuery<R> insertQuery(Table<R> into)
Description copied from interface:DSLContext
Create a newInsertQuery
- Specified by:
insertQuery
in interfaceDSLContext
- Parameters:
into
- The table to insert data into- Returns:
- The new
InsertQuery
-
insertInto
public <R extends Record> InsertSetStep<R> insertInto(Table<R> into)
Description copied from interface:DSLContext
Create a new DSL insert statement.This type of insert may feel more convenient to some users, as it uses the
UPDATE
statement'sSET a = b
syntax.Example:
DSLContext create = DSL.using(configuration); create.insertInto(table) .set(field1, value1) .set(field2, value2) .newRecord() .set(field1, value3) .set(field2, value4) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1> InsertValuesStep1<R,T1> insertInto(Table<R> into, Field<T1> field1)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1) .values(field1) .values(field1) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2> InsertValuesStep2<R,T1,T2> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2) .values(field1, field2) .values(field1, field2) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3> InsertValuesStep3<R,T1,T2,T3> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3) .values(field1, field2, field3) .values(field1, field2, field3) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4> InsertValuesStep4<R,T1,T2,T3,T4> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, field4) .values(field1, field2, field3, field4) .values(field1, field2, field3, field4) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5> InsertValuesStep5<R,T1,T2,T3,T4,T5> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, field4, field5) .values(field1, field2, field3, field4, field5) .values(field1, field2, field3, field4, field5) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6> InsertValuesStep6<R,T1,T2,T3,T4,T5,T6> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field5, field6) .values(valueA1, valueA2, valueA3, .., valueA5, valueA6) .values(valueB1, valueB2, valueB3, .., valueB5, valueB6) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7> InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field6, field7) .values(valueA1, valueA2, valueA3, .., valueA6, valueA7) .values(valueB1, valueB2, valueB3, .., valueB6, valueB7) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8> InsertValuesStep8<R,T1,T2,T3,T4,T5,T6,T7,T8> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field7, field8) .values(valueA1, valueA2, valueA3, .., valueA7, valueA8) .values(valueB1, valueB2, valueB3, .., valueB7, valueB8) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9> InsertValuesStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field8, field9) .values(valueA1, valueA2, valueA3, .., valueA8, valueA9) .values(valueB1, valueB2, valueB3, .., valueB8, valueB9) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> InsertValuesStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field9, field10) .values(valueA1, valueA2, valueA3, .., valueA9, valueA10) .values(valueB1, valueB2, valueB3, .., valueB9, valueB10) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> InsertValuesStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field10, field11) .values(valueA1, valueA2, valueA3, .., valueA10, valueA11) .values(valueB1, valueB2, valueB3, .., valueB10, valueB11) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> InsertValuesStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field11, field12) .values(valueA1, valueA2, valueA3, .., valueA11, valueA12) .values(valueB1, valueB2, valueB3, .., valueB11, valueB12) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> InsertValuesStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field12, field13) .values(valueA1, valueA2, valueA3, .., valueA12, valueA13) .values(valueB1, valueB2, valueB3, .., valueB12, valueB13) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> InsertValuesStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field13, field14) .values(valueA1, valueA2, valueA3, .., valueA13, valueA14) .values(valueB1, valueB2, valueB3, .., valueB13, valueB14) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> InsertValuesStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field14, field15) .values(valueA1, valueA2, valueA3, .., valueA14, valueA15) .values(valueB1, valueB2, valueB3, .., valueB14, valueB15) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> InsertValuesStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field15, field16) .values(valueA1, valueA2, valueA3, .., valueA15, valueA16) .values(valueB1, valueB2, valueB3, .., valueB15, valueB16) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> InsertValuesStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field16, field17) .values(valueA1, valueA2, valueA3, .., valueA16, valueA17) .values(valueB1, valueB2, valueB3, .., valueB16, valueB17) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> InsertValuesStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field17, field18) .values(valueA1, valueA2, valueA3, .., valueA17, valueA18) .values(valueB1, valueB2, valueB3, .., valueB17, valueB18) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> InsertValuesStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field18, field19) .values(valueA1, valueA2, valueA3, .., valueA18, valueA19) .values(valueB1, valueB2, valueB3, .., valueB18, valueB19) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> InsertValuesStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field19, field20) .values(valueA1, valueA2, valueA3, .., valueA19, valueA20) .values(valueB1, valueB2, valueB3, .., valueB19, valueB20) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> InsertValuesStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field20, field21) .values(valueA1, valueA2, valueA3, .., valueA20, valueA21) .values(valueB1, valueB2, valueB3, .., valueB20, valueB21) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> InsertValuesStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
using(configuration) .insertInto(table, field1, field2, field3, .., field21, field22) .values(valueA1, valueA2, valueA3, .., valueA21, valueA22) .values(valueB1, valueB2, valueB3, .., valueB21, valueB22) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record> InsertValuesStepN<R> insertInto(Table<R> into, Field<?>... fields)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
DSLContext create = DSL.using(configuration); create.insertInto(table, field1, field2) .values(value1, value2) .values(value3, value4) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
insertInto
public <R extends Record> InsertValuesStepN<R> insertInto(Table<R> into, Collection<? extends Field<?>> fields)
Description copied from interface:DSLContext
Create a new DSL insert statement.Example:
DSLContext create = DSL.using(configuration); create.insertInto(table, field1, field2) .values(value1, value2) .values(value3, value4) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();
- Specified by:
insertInto
in interfaceDSLContext
-
updateQuery
public <R extends Record> UpdateQuery<R> updateQuery(Table<R> table)
Description copied from interface:DSLContext
Create a newUpdateQuery
- Specified by:
updateQuery
in interfaceDSLContext
- Parameters:
table
- The table to update data into- Returns:
- The new
UpdateQuery
-
update
public <R extends Record> UpdateSetFirstStep<R> update(Table<R> table)
Description copied from interface:DSLContext
Create a new DSL update statement.Example:
DSLContext create = DSL.using(configuration); create.update(table) .set(field1, value1) .set(field2, value2) .where(field1.greaterThan(100)) .execute();
Note that some databases support table expressions more complex than simple table references. In MySQL, for instance, you can write
create.update(t1.join(t2).on(t1.id.eq(t2.id))) .set(t1.value, value1) .set(t2.value, value2) .where(t1.id.eq(10)) .execute();
- Specified by:
update
in interfaceDSLContext
-
mergeInto
public <R extends Record> MergeUsingStep<R> mergeInto(Table<R> table)
Description copied from interface:DSLContext
Create a new DSL SQL standard MERGE statement.This statement is available from DSL syntax only. It is known to be supported in some way by any of these dialects:
dialect support type documentation DB2 SQL:2008 standard and major enhancements http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com. ibm.db2.udb.admin.doc/doc/r0010873.htm HSQLDB SQL:2008 standard http://hsqldb.org/doc/2.0/guide/dataaccess-chapt.html#N129BA Oracle SQL:2008 standard and minor enhancements http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/ statements_9016.htm SQL Server Similar to SQL:2008 standard with some major enhancements http://msdn.microsoft.com/de-de/library/bb510625.aspx Sybase Similar to SQL:2008 standard with some major enhancements http://dcx.sybase.com/1100/en/dbreference_en11/merge-statement.html Example:
DSLContext create = DSL.using(configuration); create.mergeInto(table) .using(select) .on(condition) .whenMatchedThenUpdate() .set(field1, value1) .set(field2, value2) .whenNotMatchedThenInsert(field1, field2) .values(value1, value2) .execute();
Note: Using this method, you can also create an H2-specific MERGE statement without field specification. See also
DSLContext.mergeInto(Table, Field...)
- Specified by:
mergeInto
in interfaceDSLContext
-
mergeInto
public <R extends Record,T1> MergeKeyStep1<R,T1> mergeInto(Table<R> table, Field<T1> field1)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2> MergeKeyStep2<R,T1,T2> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3> MergeKeyStep3<R,T1,T2,T3> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4> MergeKeyStep4<R,T1,T2,T3,T4> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5> MergeKeyStep5<R,T1,T2,T3,T4,T5> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6> MergeKeyStep6<R,T1,T2,T3,T4,T5,T6> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7> MergeKeyStep7<R,T1,T2,T3,T4,T5,T6,T7> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8> MergeKeyStep8<R,T1,T2,T3,T4,T5,T6,T7,T8> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9> MergeKeyStep9<R,T1,T2,T3,T4,T5,T6,T7,T8,T9> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> MergeKeyStep10<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> MergeKeyStep11<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> MergeKeyStep12<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> MergeKeyStep13<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> MergeKeyStep14<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> MergeKeyStep15<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> MergeKeyStep16<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> MergeKeyStep17<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> MergeKeyStep18<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> MergeKeyStep19<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> MergeKeyStep20<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> MergeKeyStep21<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> MergeKeyStep22<R,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> mergeInto(Table<R> table, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Description copied from interface:DSLContext
- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
mergeInto
public <R extends Record> MergeKeyStepN<R> mergeInto(Table<R> table, Field<?>... fields)
Description copied from interface:DSLContext
Create a new DSL UPSERT statement (SQLDialect.H2
MERGE
) orSQLDialect.HANA
UPSERT
).This statement is available from DSL syntax only. It is known to be supported in some way by any of these dialects:
H2 H2 natively supports this special syntax http://www.h2database.com/html/grammar.html#merge HANA HANA natively supports this syntax http://help.sap.com/saphelp_hanaplatform/helpdata/en/20/fc06a7751910149892c0d09be21a38/content.htm PostgreSQL This database can emulate the H2-specific MERGE statement via INSERT .. ON CONFLICT DO UPDATE
http://www.postgresql.org/docs/9.5/static/sql-insert.html DB2, HSQLDB, Oracle, SQL Server, Sybase SQL Anywhere These databases can emulate the H2-specific MERGE statement using a standard SQL MERGE statement, without restrictions See DSLContext.mergeInto(Table)
for the standard MERGE statement- Specified by:
mergeInto
in interfaceDSLContext
-
mergeInto
public <R extends Record> MergeKeyStepN<R> mergeInto(Table<R> table, Collection<? extends Field<?>> fields)
Description copied from interface:DSLContext
Create a new DSL merge statement (H2-specific syntax).- Specified by:
mergeInto
in interfaceDSLContext
- See Also:
DSLContext.mergeInto(Table, Field...)
-
deleteQuery
public <R extends Record> DeleteQuery<R> deleteQuery(Table<R> table)
Description copied from interface:DSLContext
Create a newDeleteQuery
- Specified by:
deleteQuery
in interfaceDSLContext
- Parameters:
table
- The table to delete data from- Returns:
- The new
DeleteQuery
-
delete
public <R extends Record> DeleteUsingStep<R> delete(Table<R> table)
Description copied from interface:DSLContext
Create a new DSL delete statement.This is an alias for
DSLContext.deleteFrom(Table)
- Specified by:
delete
in interfaceDSLContext
-
deleteFrom
public <R extends Record> DeleteUsingStep<R> deleteFrom(Table<R> table)
Description copied from interface:DSLContext
Create a new DSL delete statement.Example:
DSLContext create = DSL.using(configuration); create.deleteFrom(table) .where(field1.greaterThan(100)) .execute();
Some but not all databases support aliased tables in delete statements.
- Specified by:
deleteFrom
in interfaceDSLContext
-
batch
public Batch batch(Query... queries)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (without bind values).This essentially runs the following logic:
Statement s = connection.createStatement(); for (Query query : queries) { s.addBatch(query.getSQL(true)); } s.execute();
- Specified by:
batch
in interfaceDSLContext
- See Also:
Statement.executeBatch()
-
batch
public Batch batch(Queries queries)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (without bind values).This essentially runs the following logic:
Statement s = connection.createStatement(); for (Query query : queries) { s.addBatch(query.getSQL(true)); } s.execute();
- Specified by:
batch
in interfaceDSLContext
- See Also:
Statement.executeBatch()
-
batch
public Batch batch(String... queries)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (without bind values).This is a convenience method for calling
.batch(query(queries[0]), query(queries[1]), ...)
- Specified by:
batch
in interfaceDSLContext
- See Also:
DSLContext.query(String)
,DSLContext.batch(Query...)
,Statement.executeBatch()
-
batch
public Batch batch(Collection<? extends Query> queries)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (without bind values).This essentially runs the following logic:
Statement s = connection.createStatement(); for (Query query : queries) { s.addBatch(query.getSQL(true)); } s.execute();
- Specified by:
batch
in interfaceDSLContext
- See Also:
Statement.executeBatch()
-
batch
public BatchBindStep batch(Query query)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (with bind values).When running
create.batch(query) .bind(valueA1, valueA2) .bind(valueB1, valueB2) .execute();
This essentially runs the following logic:
Statement s = connection.prepareStatement(query.getSQL(false)); for (Object[] bindValues : allBindValues) { for (Object bindValue : bindValues) { s.setXXX(bindValue); } s.addBatch(); } s.execute();
Note: bind values will be inlined to a static batch query as in
DSLContext.batch(Query...)
, if you choose to execute queries withSettings.getStatementType()
==StatementType.STATIC_STATEMENT
- Specified by:
batch
in interfaceDSLContext
- See Also:
Statement.executeBatch()
-
batch
public BatchBindStep batch(String sql)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (with bind values).This is a convenience method for calling
.batch(query(sql))
- Specified by:
batch
in interfaceDSLContext
- See Also:
DSLContext.query(String)
,DSLContext.batch(Query)
,Statement.executeBatch()
-
batch
public Batch batch(Query query, Object[]... bindings)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (with bind values).This is a convenience method for calling
DSLContext.batch(Query)
and then binding values one by one usingBatchBindStep.bind(Object...)
Note: bind values will be inlined to a static batch query as in
DSLContext.batch(Query...)
, if you choose to execute queries withSettings.getStatementType()
==StatementType.STATIC_STATEMENT
- Specified by:
batch
in interfaceDSLContext
- See Also:
DSLContext.batch(Query)
,Statement.executeBatch()
-
batch
public Batch batch(String sql, Object[]... bindings)
Description copied from interface:DSLContext
Create a batch statement to execute a set of queries in batch mode (with bind values).This is a convenience method for calling
.batch(query(sql), bindings)
- Specified by:
batch
in interfaceDSLContext
- See Also:
DSLContext.query(String)
,DSLContext.batch(Query, Object[][])
,Statement.executeBatch()
-
batchStore
public Batch batchStore(UpdatableRecord<?>... records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofINSERT
andUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.store()
semantics.This batch operation can be executed in two modes:
With
(the default)Settings.getStatementType()
==StatementType.PREPARED_STATEMENT
In this mode, record order is preserved as much as possible, as long as two subsequent records generate the same SQL (with bind variables). The number of executed batch operations corresponds to
[number of distinct rendered SQL statements]
. In the worst case, this corresponds to the number of total records.The record type order is preserved in the way they are passed to this method. This is an example of how statements will be ordered:
The above results in// Let's assume, odd numbers result in INSERTs and even numbers in UPDATES // Let's also assume a[n] are all of the same type, just as b[n], c[n]... int[] result = create.batchStore(a1, a2, a3, b1, a4, c1, b3, a5) .execute();
result.length == 8
and the following 4 separate batch statements:- INSERT a1, a3, a5
- UPDATE a2, a4
- INSERT b1, b3
- INSERT c1
With
Settings.getStatementType()
==StatementType.STATIC_STATEMENT
This mode may be better for large and complex batch store operations, as the order of records is preserved entirely, and jOOQ can guarantee that only a single batch statement is serialised to the database.
A note on MERGE / UPSERT semantics
This method (just like
UpdatableRecord.store()
) does not implement the semantics of an actualUPSERT
orMERGE
statement, which delegates the decision of whether toINSERT
orUPDATE
a record to the database. The decision is made by the client (jOOQ) depending on whether each individual record has been fetched from the database prior to storing it.- Specified by:
batchStore
in interfaceDSLContext
- See Also:
UpdatableRecord.store()
,Statement.executeBatch()
-
batchStore
public Batch batchStore(Collection<? extends UpdatableRecord<?>> records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofINSERT
andUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.store()
semantics.- Specified by:
batchStore
in interfaceDSLContext
- See Also:
DSLContext.batchStore(UpdatableRecord...)
,UpdatableRecord.store()
,Statement.executeBatch()
-
batchInsert
public Batch batchInsert(TableRecord<?>... records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofINSERT
queries in batch mode (with bind values) according toTableRecord.insert()
semantics.- Specified by:
batchInsert
in interfaceDSLContext
- See Also:
DSLContext.batchStore(UpdatableRecord...)
,TableRecord.insert()
,Statement.executeBatch()
-
batchInsert
public Batch batchInsert(Collection<? extends TableRecord<?>> records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofINSERT
queries in batch mode (with bind values) according toTableRecord.insert()
semantics.- Specified by:
batchInsert
in interfaceDSLContext
- See Also:
DSLContext.batchStore(UpdatableRecord...)
,Statement.executeBatch()
-
batchUpdate
public Batch batchUpdate(UpdatableRecord<?>... records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.update()
semantics.- Specified by:
batchUpdate
in interfaceDSLContext
- See Also:
DSLContext.batchStore(UpdatableRecord...)
,UpdatableRecord.update()
,Statement.executeBatch()
-
batchUpdate
public Batch batchUpdate(Collection<? extends UpdatableRecord<?>> records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofUPDATE
queries in batch mode (with bind values) according toUpdatableRecord.update()
semantics.- Specified by:
batchUpdate
in interfaceDSLContext
- See Also:
DSLContext.batchStore(UpdatableRecord...)
,UpdatableRecord.update()
,Statement.executeBatch()
-
batchDelete
public Batch batchDelete(UpdatableRecord<?>... records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according toUpdatableRecord.delete()
sematics.This batch operation can be executed in two modes:
With
(the default)Settings.getStatementType()
==StatementType.PREPARED_STATEMENT
In this mode, record order is preserved as much as possible, as long as two subsequent records generate the same SQL (with bind variables). The number of executed batch operations corresponds to
[number of distinct rendered SQL statements]
. In the worst case, this corresponds to the number of total records.The record type order is preserved in the way they are passed to this method. This is an example of how statements will be ordered:
The above results in// Let's assume a[n] are all of the same type, just as b[n], c[n]... int[] result = create.batchDelete(a1, a2, a3, b1, a4, c1, c2, a5) .execute();
result.length == 8
and the following 5 separate batch statements:- DELETE a1, a2, a3
- DELETE b1
- DELETE a4
- DELETE c1, c2
- DELETE a5
With
Settings.getStatementType()
==StatementType.STATIC_STATEMENT
This mode may be better for large and complex batch delete operations, as the order of records is preserved entirely, and jOOQ can guarantee that only a single batch statement is serialised to the database.
- Specified by:
batchDelete
in interfaceDSLContext
- See Also:
UpdatableRecord.delete()
,Statement.executeBatch()
-
batchDelete
public Batch batchDelete(Collection<? extends UpdatableRecord<?>> records)
Description copied from interface:DSLContext
Create a batch statement to execute a set ofDELETE
queries in batch mode (with bind values) according toUpdatableRecord.delete()
sematics.- Specified by:
batchDelete
in interfaceDSLContext
- See Also:
DSLContext.batchDelete(UpdatableRecord...)
,UpdatableRecord.delete()
,Statement.executeBatch()
-
ddl
public Queries ddl(Catalog catalog)
Description copied from interface:DSLContext
Convenience method forMeta.ddl()
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Catalog...)
,Meta.ddl()
-
ddl
public Queries ddl(Catalog catalog, DDLFlag... flags)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Catalog...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Catalog...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Schema schema)
Description copied from interface:DSLContext
Convenience method forMeta.ddl()
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Schema...)
,Meta.ddl()
-
ddl
public Queries ddl(Schema schema, DDLFlag... flags)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Schema...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Schema schema, DDLExportConfiguration exportConfiguration)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Schema...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Table<?> table)
Description copied from interface:DSLContext
Convenience method forMeta.ddl()
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl()
-
ddl
public Queries ddl(Table<?> table, DDLFlag... flags)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Table<?> table, DDLExportConfiguration exportConfiguration)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Table... tables)
Description copied from interface:DSLContext
Convenience method forMeta.ddl()
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl()
-
ddl
public Queries ddl(Table[] tables, DDLFlag... flags)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Table[] tables, DDLExportConfiguration exportConfiguration)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Collection<? extends Table<?>> tables)
Description copied from interface:DSLContext
Convenience method forMeta.ddl()
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl()
-
ddl
public Queries ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl(DDLExportConfiguration)
-
ddl
public Queries ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration exportConfiguration)
Description copied from interface:DSLContext
Convenience method forMeta.ddl(DDLExportConfiguration)
.- Specified by:
ddl
in interfaceDSLContext
- See Also:
DSLContext.meta(Table...)
,Meta.ddl(DDLExportConfiguration)
-
setCatalog
public RowCountQuery setCatalog(String catalog)
Description copied from interface:DSLContext
Set the current catalog to a new value.- Specified by:
setCatalog
in interfaceDSLContext
- See Also:
DSL.catalog(Name)
-
setCatalog
public RowCountQuery setCatalog(Name catalog)
Description copied from interface:DSLContext
Set the current catalog to a new value.- Specified by:
setCatalog
in interfaceDSLContext
- See Also:
DSL.catalog(Name)
-
setCatalog
public RowCountQuery setCatalog(Catalog catalog)
Description copied from interface:DSLContext
Set the current catalog to a new value.- Specified by:
setCatalog
in interfaceDSLContext
-
setSchema
public RowCountQuery setSchema(String schema)
Description copied from interface:DSLContext
Set the current schema to a new value.- Specified by:
setSchema
in interfaceDSLContext
- See Also:
DSL.schema(Name)
,DSL.setSchema(String)
-
setSchema
public RowCountQuery setSchema(Name schema)
Description copied from interface:DSLContext
Set the current schema to a new value.- Specified by:
setSchema
in interfaceDSLContext
- See Also:
DSL.schema(Name)
,DSL.setSchema(Name)
-
setSchema
public RowCountQuery setSchema(Schema schema)
Description copied from interface:DSLContext
Set the current schema to a new value.- Specified by:
setSchema
in interfaceDSLContext
- See Also:
DSL.setSchema(Schema)
-
set
public RowCountQuery set(Name name, Param<?> param)
Description copied from interface:DSLContext
Set a vendor specific flag to a new value.- Specified by:
set
in interfaceDSLContext
- See Also:
DSL.set(Name, Param)
-
commentOnTable
public CommentOnIsStep commentOnTable(String tableName)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON TABLE
statement.- Specified by:
commentOnTable
in interfaceDSLContext
- See Also:
DSL.commentOnTable(String)
,AlterTableStep.comment(Comment)
-
commentOnTable
public CommentOnIsStep commentOnTable(Name tableName)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON TABLE
statement.- Specified by:
commentOnTable
in interfaceDSLContext
- See Also:
DSL.commentOnTable(Name)
,AlterTableStep.comment(Comment)
-
commentOnTable
public CommentOnIsStep commentOnTable(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON TABLE
statement.- Specified by:
commentOnTable
in interfaceDSLContext
- See Also:
DSL.commentOnTable(Table)
,AlterTableStep.comment(Comment)
-
commentOnView
public CommentOnIsStep commentOnView(String viewName)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON VIEW
statement.- Specified by:
commentOnView
in interfaceDSLContext
- See Also:
DSL.commentOnView(String)
,AlterViewStep.comment(Comment)
-
commentOnView
public CommentOnIsStep commentOnView(Name viewName)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON VIEW
statement.- Specified by:
commentOnView
in interfaceDSLContext
- See Also:
DSL.commentOnView(Name)
,AlterViewStep.comment(Comment)
-
commentOnView
public CommentOnIsStep commentOnView(Table<?> view)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON VIEW
statement.- Specified by:
commentOnView
in interfaceDSLContext
- See Also:
DSL.commentOnView(Table)
,AlterViewStep.comment(Comment)
-
commentOnColumn
public CommentOnIsStep commentOnColumn(Name columnName)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON COLUMN
statement.- Specified by:
commentOnColumn
in interfaceDSLContext
- See Also:
DSL.commentOnColumn(Name)
-
commentOnColumn
public CommentOnIsStep commentOnColumn(Field<?> field)
Description copied from interface:DSLContext
Create a new DSLCOMMENT ON COLUMN
statement.- Specified by:
commentOnColumn
in interfaceDSLContext
- See Also:
DSL.commentOnColumn(Field)
-
createView
public CreateViewAsStep<Record> createView(String view, String... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(String, String...)
-
createView
public CreateViewAsStep<Record> createView(Name view, Name... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(Name, Name...)
-
createView
public CreateViewAsStep<Record> createView(Table<?> view, Field<?>... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(Table, Field...)
-
createView
public CreateViewAsStep<Record> createView(String view, Function<? super Field<?>,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createView(String, String...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(String, String...)
-
createView
public CreateViewAsStep<Record> createView(String view, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createView(String, String...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(String, String...)
-
createView
public CreateViewAsStep<Record> createView(Name view, Function<? super Field<?>,? extends Name> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createView(Name, Name...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(String, String...)
-
createView
public CreateViewAsStep<Record> createView(Name view, BiFunction<? super Field<?>,? super Integer,? extends Name> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createView(Name, Name...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(String, String...)
-
createView
public CreateViewAsStep<Record> createView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createView(Table, Field...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(String, String...)
-
createView
public CreateViewAsStep<Record> createView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createView(Table, Field...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createView
in interfaceDSLContext
- See Also:
DSL.createView(String, String...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(String view, String... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(String, String...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(Name view, Name... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(Name, Name...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(Table<?> view, Field<?>... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(Table, Field...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(String view, Function<? super Field<?>,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.This works like
DSLContext.createOrReplaceView(String, String...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(String, String...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(String view, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.This works like
DSLContext.createOrReplaceView(String, String...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(String, String...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(Name view, Function<? super Field<?>,? extends Name> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.This works like
DSLContext.createOrReplaceView(Name, Name...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(String, String...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(Name view, BiFunction<? super Field<?>,? super Integer,? extends Name> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.This works like
DSLContext.createOrReplaceView(Name, Name...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(String, String...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.This works like
DSLContext.createOrReplaceView(Table, Field...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(String, String...)
-
createOrReplaceView
public CreateViewAsStep<Record> createOrReplaceView(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE OR REPLACE VIEW
statement.This works like
DSLContext.createOrReplaceView(Table, Field...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createOrReplaceView
in interfaceDSLContext
- See Also:
DSL.createOrReplaceView(String, String...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(String view, String... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(String, String...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(Name view, Name... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(Name, Name...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(Table<?> view, Field<?>... fields)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(Table, Field...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(String view, Function<? super Field<?>,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createViewIfNotExists(String, String...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(String, String...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(String view, BiFunction<? super Field<?>,? super Integer,? extends String> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createViewIfNotExists(String, String...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(String, String...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(Name view, Function<? super Field<?>,? extends Name> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createViewIfNotExists(Name, Name...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(String, String...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(Name view, BiFunction<? super Field<?>,? super Integer,? extends Name> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createViewIfNotExists(Name, Name...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(String, String...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(Table<?> view, Function<? super Field<?>,? extends Field<?>> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createViewIfNotExists(Table, Field...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(String, String...)
-
createViewIfNotExists
public CreateViewAsStep<Record> createViewIfNotExists(Table<?> view, BiFunction<? super Field<?>,? super Integer,? extends Field<?>> fieldNameFunction)
Description copied from interface:DSLContext
Create a new DSLCREATE VIEW
statement.This works like
DSLContext.createViewIfNotExists(Table, Field...)
except that the view's field names are derived from the view'sSelect
statement using a function.- Specified by:
createViewIfNotExists
in interfaceDSLContext
- See Also:
DSL.createViewIfNotExists(String, String...)
-
createSchema
public CreateSchemaFinalStep createSchema(String schema)
Description copied from interface:DSLContext
Create a new DSLCREATE SCHEMA
statement.- Specified by:
createSchema
in interfaceDSLContext
- See Also:
DSL.createSchema(String)
-
createSchema
public CreateSchemaFinalStep createSchema(Name schema)
Description copied from interface:DSLContext
Create a new DSLCREATE SCHEMA
statement.- Specified by:
createSchema
in interfaceDSLContext
- See Also:
DSL.createSchema(Name)
-
createSchema
public CreateSchemaFinalStep createSchema(Schema schema)
Description copied from interface:DSLContext
Create a new DSLCREATE SCHEMA
statement.- Specified by:
createSchema
in interfaceDSLContext
- See Also:
DSL.createSchema(Schema)
-
createSchemaIfNotExists
public CreateSchemaFinalStep createSchemaIfNotExists(String schema)
Description copied from interface:DSLContext
Create a new DSLCREATE SCHEMA
statement.- Specified by:
createSchemaIfNotExists
in interfaceDSLContext
- See Also:
DSL.createSchemaIfNotExists(String)
-
createSchemaIfNotExists
public CreateSchemaFinalStep createSchemaIfNotExists(Name schema)
Description copied from interface:DSLContext
Create a new DSLCREATE SCHEMA
statement.- Specified by:
createSchemaIfNotExists
in interfaceDSLContext
- See Also:
DSL.createSchemaIfNotExists(Name)
-
createSchemaIfNotExists
public CreateSchemaFinalStep createSchemaIfNotExists(Schema schema)
Description copied from interface:DSLContext
Create a new DSLCREATE SCHEMA
statement.- Specified by:
createSchemaIfNotExists
in interfaceDSLContext
- See Also:
DSL.createSchemaIfNotExists(Schema)
-
createTable
public CreateTableColumnStep createTable(String table)
Description copied from interface:DSLContext
Create a new DSLCREATE TABLE
statement.- Specified by:
createTable
in interfaceDSLContext
- See Also:
DSL.createTable(String)
-
createTable
public CreateTableColumnStep createTable(Name table)
Description copied from interface:DSLContext
Create a new DSLCREATE TABLE
statement.- Specified by:
createTable
in interfaceDSLContext
- See Also:
DSL.createTable(Name)
-
createTable
public CreateTableColumnStep createTable(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLCREATE TABLE
statement.- Specified by:
createTable
in interfaceDSLContext
- See Also:
DSL.createTable(Table)
-
createTableIfNotExists
public CreateTableColumnStep createTableIfNotExists(String table)
Description copied from interface:DSLContext
Create a new DSLCREATE TABLE
statement.- Specified by:
createTableIfNotExists
in interfaceDSLContext
- See Also:
DSL.createTableIfNotExists(String)
-
createTableIfNotExists
public CreateTableColumnStep createTableIfNotExists(Name table)
Description copied from interface:DSLContext
Create a new DSLCREATE TABLE
statement.- Specified by:
createTableIfNotExists
in interfaceDSLContext
- See Also:
DSL.createTableIfNotExists(Name)
-
createTableIfNotExists
public CreateTableColumnStep createTableIfNotExists(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLCREATE TABLE
statement.- Specified by:
createTableIfNotExists
in interfaceDSLContext
- See Also:
DSL.createTableIfNotExists(Table)
-
createTemporaryTable
public CreateTableColumnStep createTemporaryTable(String table)
Description copied from interface:DSLContext
Create a new DSLCREATE TEMPORARY TABLE
statement.- Specified by:
createTemporaryTable
in interfaceDSLContext
- See Also:
DSL.createTemporaryTable(String)
-
createTemporaryTable
public CreateTableColumnStep createTemporaryTable(Name table)
Description copied from interface:DSLContext
Create a new DSLCREATE TEMPORARY TABLE
statement.- Specified by:
createTemporaryTable
in interfaceDSLContext
- See Also:
DSL.createTemporaryTable(Name)
-
createTemporaryTable
public CreateTableColumnStep createTemporaryTable(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLCREATE TEMPORARY TABLE
statement.- Specified by:
createTemporaryTable
in interfaceDSLContext
- See Also:
DSL.createTemporaryTable(Table)
-
createTemporaryTableIfNotExists
public CreateTableColumnStep createTemporaryTableIfNotExists(String table)
Description copied from interface:DSLContext
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.- Specified by:
createTemporaryTableIfNotExists
in interfaceDSLContext
- See Also:
DSL.createTemporaryTableIfNotExists(String)
-
createTemporaryTableIfNotExists
public CreateTableColumnStep createTemporaryTableIfNotExists(Name table)
Description copied from interface:DSLContext
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.- Specified by:
createTemporaryTableIfNotExists
in interfaceDSLContext
- See Also:
DSL.createTemporaryTableIfNotExists(Name)
-
createTemporaryTableIfNotExists
public CreateTableColumnStep createTemporaryTableIfNotExists(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.- Specified by:
createTemporaryTableIfNotExists
in interfaceDSLContext
- See Also:
DSL.createTemporaryTableIfNotExists(Table)
-
createGlobalTemporaryTable
public CreateTableColumnStep createGlobalTemporaryTable(String table)
Description copied from interface:DSLContext
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.- Specified by:
createGlobalTemporaryTable
in interfaceDSLContext
- See Also:
DSL.createGlobalTemporaryTable(String)
-
createGlobalTemporaryTable
public CreateTableColumnStep createGlobalTemporaryTable(Name table)
Description copied from interface:DSLContext
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.- Specified by:
createGlobalTemporaryTable
in interfaceDSLContext
- See Also:
DSL.createGlobalTemporaryTable(Name)
-
createGlobalTemporaryTable
public CreateTableColumnStep createGlobalTemporaryTable(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.- Specified by:
createGlobalTemporaryTable
in interfaceDSLContext
- See Also:
DSL.createGlobalTemporaryTable(Table)
-
createType
public CreateTypeStep createType(String type)
Description copied from interface:DSLContext
Create a new DSLCREATE TYPE
statement.- Specified by:
createType
in interfaceDSLContext
- See Also:
DSL.createType(String)
-
createType
public CreateTypeStep createType(Name type)
Description copied from interface:DSLContext
Create a new DSLCREATE TYPE
statement.- Specified by:
createType
in interfaceDSLContext
- See Also:
DSL.createType(Name)
-
alterType
public AlterTypeStep alterType(String type)
Description copied from interface:DSLContext
Create a new DSLALTER TYPE
statement.- Specified by:
alterType
in interfaceDSLContext
- See Also:
DSL.alterType(String)
-
alterType
public AlterTypeStep alterType(Name type)
Description copied from interface:DSLContext
Create a new DSLALTER TYPE
statement.- Specified by:
alterType
in interfaceDSLContext
- See Also:
DSL.alterType(Name)
-
dropType
public DropTypeStep dropType(String type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropType
in interfaceDSLContext
- See Also:
DSL.dropType(String)
-
dropType
public DropTypeStep dropType(Name type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropType
in interfaceDSLContext
- See Also:
DSL.dropType(Name)
-
dropType
public DropTypeStep dropType(String... type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropType
in interfaceDSLContext
- See Also:
DSL.dropType(String...)
-
dropType
public DropTypeStep dropType(Name... type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropType
in interfaceDSLContext
- See Also:
DSL.dropType(Name...)
-
dropType
public DropTypeStep dropType(Collection<?> type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropType
in interfaceDSLContext
- See Also:
DSL.dropType(Collection)
-
dropTypeIfExists
public DropTypeStep dropTypeIfExists(String type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropTypeIfExists
in interfaceDSLContext
- See Also:
DSL.dropTypeIfExists(String)
-
dropTypeIfExists
public DropTypeStep dropTypeIfExists(Name type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropTypeIfExists
in interfaceDSLContext
- See Also:
DSL.dropTypeIfExists(Name)
-
dropTypeIfExists
public DropTypeStep dropTypeIfExists(String... type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropTypeIfExists
in interfaceDSLContext
- See Also:
DSL.dropTypeIfExists(String...)
-
dropTypeIfExists
public DropTypeStep dropTypeIfExists(Name... type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropTypeIfExists
in interfaceDSLContext
- See Also:
DSL.dropTypeIfExists(Name...)
-
dropTypeIfExists
public DropTypeStep dropTypeIfExists(Collection<?> type)
Description copied from interface:DSLContext
Create a new DSLDROP TYPE
statement.- Specified by:
dropTypeIfExists
in interfaceDSLContext
- See Also:
DSL.dropTypeIfExists(Collection)
-
createIndex
public CreateIndexStep createIndex()
Description copied from interface:DSLContext
Create a new DSLCREATE INDEX
statement.- Specified by:
createIndex
in interfaceDSLContext
- See Also:
DSL.createIndex()
-
createIndex
public CreateIndexStep createIndex(String index)
Description copied from interface:DSLContext
Create a new DSLCREATE INDEX
statement.- Specified by:
createIndex
in interfaceDSLContext
- See Also:
DSL.createIndex(String)
-
createIndex
public CreateIndexStep createIndex(Name index)
Description copied from interface:DSLContext
Create a new DSLCREATE INDEX
statement.- Specified by:
createIndex
in interfaceDSLContext
- See Also:
DSL.createIndex(Name)
-
createIndex
public CreateIndexStep createIndex(Index index)
Description copied from interface:DSLContext
Create a new DSLCREATE INDEX
statement.- Specified by:
createIndex
in interfaceDSLContext
- See Also:
DSL.createIndex(Index)
-
createIndexIfNotExists
public CreateIndexStep createIndexIfNotExists(String index)
Description copied from interface:DSLContext
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.- Specified by:
createIndexIfNotExists
in interfaceDSLContext
- See Also:
DSL.createIndexIfNotExists(String)
-
createIndexIfNotExists
public CreateIndexStep createIndexIfNotExists(Name index)
Description copied from interface:DSLContext
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.- Specified by:
createIndexIfNotExists
in interfaceDSLContext
- See Also:
DSL.createIndexIfNotExists(Name)
-
createIndexIfNotExists
public CreateIndexStep createIndexIfNotExists(Index index)
Description copied from interface:DSLContext
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.- Specified by:
createIndexIfNotExists
in interfaceDSLContext
- See Also:
DSL.createIndexIfNotExists(Index)
-
createUniqueIndex
public CreateIndexStep createUniqueIndex()
Description copied from interface:DSLContext
Create a new DSLCREATE UNIQUE INDEX
statement.- Specified by:
createUniqueIndex
in interfaceDSLContext
- See Also:
DSL.createUniqueIndex()
-
createUniqueIndex
public CreateIndexStep createUniqueIndex(String index)
Description copied from interface:DSLContext
Create a new DSLCREATE UNIQUE INDEX
statement.- Specified by:
createUniqueIndex
in interfaceDSLContext
- See Also:
DSL.createIndex(String)
-
createUniqueIndex
public CreateIndexStep createUniqueIndex(Name index)
Description copied from interface:DSLContext
Create a new DSLCREATE UNIQUE INDEX
statement.- Specified by:
createUniqueIndex
in interfaceDSLContext
- See Also:
DSL.createIndex(Name)
-
createUniqueIndex
public CreateIndexStep createUniqueIndex(Index index)
Description copied from interface:DSLContext
Create a new DSLCREATE UNIQUE INDEX
statement.- Specified by:
createUniqueIndex
in interfaceDSLContext
- See Also:
DSL.createIndex(Index)
-
createUniqueIndexIfNotExists
public CreateIndexStep createUniqueIndexIfNotExists(String index)
Description copied from interface:DSLContext
Create a new DSLCREATE UNIQUE INDEX
statement.- Specified by:
createUniqueIndexIfNotExists
in interfaceDSLContext
- See Also:
DSL.createIndex(String)
-
createUniqueIndexIfNotExists
public CreateIndexStep createUniqueIndexIfNotExists(Name index)
Description copied from interface:DSLContext
Create a new DSLCREATE UNIQUE INDEX
statement.- Specified by:
createUniqueIndexIfNotExists
in interfaceDSLContext
- See Also:
DSL.createIndex(Name)
-
createUniqueIndexIfNotExists
public CreateIndexStep createUniqueIndexIfNotExists(Index index)
Description copied from interface:DSLContext
Create a new DSLCREATE UNIQUE INDEX
statement.- Specified by:
createUniqueIndexIfNotExists
in interfaceDSLContext
- See Also:
DSL.createIndex(Index)
-
createSequence
public CreateSequenceFlagsStep createSequence(String sequence)
Description copied from interface:DSLContext
Create a new DSLCREATE SEQUENCE
statement.- Specified by:
createSequence
in interfaceDSLContext
- See Also:
DSL.createSequence(String)
-
createSequence
public CreateSequenceFlagsStep createSequence(Name sequence)
Description copied from interface:DSLContext
Create a new DSLCREATE SEQUENCE
statement.- Specified by:
createSequence
in interfaceDSLContext
- See Also:
DSL.createSequence(Name)
-
createSequence
public CreateSequenceFlagsStep createSequence(Sequence<?> sequence)
Description copied from interface:DSLContext
Create a new DSLCREATE SEQUENCE
statement.- Specified by:
createSequence
in interfaceDSLContext
- See Also:
DSL.createSequence(String)
-
createSequenceIfNotExists
public CreateSequenceFlagsStep createSequenceIfNotExists(String sequence)
Description copied from interface:DSLContext
Create a new DSLCREATE SEQUENCE
statement.- Specified by:
createSequenceIfNotExists
in interfaceDSLContext
- See Also:
DSL.createSequenceIfNotExists(String)
-
createSequenceIfNotExists
public CreateSequenceFlagsStep createSequenceIfNotExists(Name sequence)
Description copied from interface:DSLContext
Create a new DSLCREATE SEQUENCE
statement.- Specified by:
createSequenceIfNotExists
in interfaceDSLContext
- See Also:
DSL.createSequenceIfNotExists(Name)
-
createSequenceIfNotExists
public CreateSequenceFlagsStep createSequenceIfNotExists(Sequence<?> sequence)
Description copied from interface:DSLContext
Create a new DSLCREATE SEQUENCE
statement.- Specified by:
createSequenceIfNotExists
in interfaceDSLContext
- See Also:
DSL.createSequenceIfNotExists(Sequence)
-
alterSequence
public AlterSequenceStep<BigInteger> alterSequence(String sequence)
Description copied from interface:DSLContext
Create a new DSLALTER SEQUENCE
statement.- Specified by:
alterSequence
in interfaceDSLContext
- See Also:
DSL.alterSequence(String)
-
alterSequence
public AlterSequenceStep<BigInteger> alterSequence(Name sequence)
Description copied from interface:DSLContext
Create a new DSLALTER SEQUENCE
statement.- Specified by:
alterSequence
in interfaceDSLContext
- See Also:
DSL.alterSequence(Name)
-
alterSequence
public <T extends Number> AlterSequenceStep<T> alterSequence(Sequence<T> sequence)
Description copied from interface:DSLContext
Create a new DSLALTER SEQUENCE
statement.- Specified by:
alterSequence
in interfaceDSLContext
- See Also:
DSL.alterSequence(Sequence)
-
alterSequenceIfExists
public AlterSequenceStep<BigInteger> alterSequenceIfExists(String sequence)
Description copied from interface:DSLContext
Create a new DSLALTER SEQUENCE
statement.- Specified by:
alterSequenceIfExists
in interfaceDSLContext
- See Also:
DSL.alterSequenceIfExists(String)
-
alterSequenceIfExists
public AlterSequenceStep<BigInteger> alterSequenceIfExists(Name sequence)
Description copied from interface:DSLContext
Create a new DSLALTER SEQUENCE
statement.- Specified by:
alterSequenceIfExists
in interfaceDSLContext
- See Also:
DSL.alterSequenceIfExists(Name)
-
alterSequenceIfExists
public <T extends Number> AlterSequenceStep<T> alterSequenceIfExists(Sequence<T> sequence)
Description copied from interface:DSLContext
Create a new DSLALTER SEQUENCE
statement.- Specified by:
alterSequenceIfExists
in interfaceDSLContext
- See Also:
DSL.alterSequenceIfExists(Sequence)
-
alterTable
public AlterTableStep alterTable(String table)
Description copied from interface:DSLContext
Create a new DSLALTER TABLE
statement.- Specified by:
alterTable
in interfaceDSLContext
- See Also:
DSL.alterTable(String)
-
alterTable
public AlterTableStep alterTable(Name table)
Description copied from interface:DSLContext
Create a new DSLALTER TABLE
statement.- Specified by:
alterTable
in interfaceDSLContext
- See Also:
DSL.alterTable(Name)
-
alterTable
public AlterTableStep alterTable(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLALTER TABLE
statement.- Specified by:
alterTable
in interfaceDSLContext
- See Also:
DSL.alterTable(Table)
-
alterTableIfExists
public AlterTableStep alterTableIfExists(String table)
Description copied from interface:DSLContext
Create a new DSLALTER TABLE
statement.- Specified by:
alterTableIfExists
in interfaceDSLContext
- See Also:
DSL.alterTableIfExists(String)
-
alterTableIfExists
public AlterTableStep alterTableIfExists(Name table)
Description copied from interface:DSLContext
Create a new DSLALTER TABLE
statement.- Specified by:
alterTableIfExists
in interfaceDSLContext
- See Also:
DSL.alterTableIfExists(Name)
-
alterTableIfExists
public AlterTableStep alterTableIfExists(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLALTER TABLE
statement.- Specified by:
alterTableIfExists
in interfaceDSLContext
- See Also:
DSL.alterTableIfExists(Table)
-
alterSchema
public AlterSchemaStep alterSchema(String schema)
Description copied from interface:DSLContext
Create a new DSLALTER SCHEMA
statement.- Specified by:
alterSchema
in interfaceDSLContext
- See Also:
DSL.alterSchema(String)
-
alterSchema
public AlterSchemaStep alterSchema(Name schema)
Description copied from interface:DSLContext
Create a new DSLALTER SCHEMA
statement.- Specified by:
alterSchema
in interfaceDSLContext
- See Also:
DSL.alterSchema(Name)
-
alterSchema
public AlterSchemaStep alterSchema(Schema schema)
Description copied from interface:DSLContext
Create a new DSLALTER SCHEMA
statement.- Specified by:
alterSchema
in interfaceDSLContext
- See Also:
DSL.alterSchema(Schema)
-
alterSchemaIfExists
public AlterSchemaStep alterSchemaIfExists(String schema)
Description copied from interface:DSLContext
Create a new DSLALTER SCHEMA
statement.- Specified by:
alterSchemaIfExists
in interfaceDSLContext
- See Also:
DSL.alterSchemaIfExists(String)
-
alterSchemaIfExists
public AlterSchemaStep alterSchemaIfExists(Name schema)
Description copied from interface:DSLContext
Create a new DSLALTER SCHEMA
statement.- Specified by:
alterSchemaIfExists
in interfaceDSLContext
- See Also:
DSL.alterSchemaIfExists(Name)
-
alterSchemaIfExists
public AlterSchemaStep alterSchemaIfExists(Schema schema)
Description copied from interface:DSLContext
Create a new DSLALTER SCHEMA
statement.- Specified by:
alterSchemaIfExists
in interfaceDSLContext
- See Also:
DSL.alterSchemaIfExists(Schema)
-
alterView
public AlterViewStep alterView(String table)
Description copied from interface:DSLContext
Create a new DSLALTER VIEW
statement.- Specified by:
alterView
in interfaceDSLContext
- See Also:
DSL.alterView(String)
-
alterView
public AlterViewStep alterView(Name table)
Description copied from interface:DSLContext
Create a new DSLALTER VIEW
statement.- Specified by:
alterView
in interfaceDSLContext
- See Also:
DSL.alterView(Name)
-
alterView
public AlterViewStep alterView(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLALTER VIEW
statement.- Specified by:
alterView
in interfaceDSLContext
- See Also:
DSL.alterView(Table)
-
alterViewIfExists
public AlterViewStep alterViewIfExists(String table)
Description copied from interface:DSLContext
Create a new DSLALTER VIEW
statement.- Specified by:
alterViewIfExists
in interfaceDSLContext
- See Also:
DSL.alterViewIfExists(String)
-
alterViewIfExists
public AlterViewStep alterViewIfExists(Name table)
Description copied from interface:DSLContext
Create a new DSLALTER VIEW
statement.- Specified by:
alterViewIfExists
in interfaceDSLContext
- See Also:
DSL.alterViewIfExists(Name)
-
alterViewIfExists
public AlterViewStep alterViewIfExists(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLALTER VIEW
statement.- Specified by:
alterViewIfExists
in interfaceDSLContext
- See Also:
DSL.alterViewIfExists(Table)
-
alterIndex
public AlterIndexOnStep alterIndex(String index)
Description copied from interface:DSLContext
Create a new DSLALTER INDEX
statement.- Specified by:
alterIndex
in interfaceDSLContext
- See Also:
DSL.alterIndex(String)
-
alterIndex
public AlterIndexOnStep alterIndex(Name index)
Description copied from interface:DSLContext
Create a new DSLALTER INDEX
statement.- Specified by:
alterIndex
in interfaceDSLContext
- See Also:
DSL.alterIndex(Name)
-
alterIndex
public AlterIndexOnStep alterIndex(Index index)
Description copied from interface:DSLContext
Create a new DSLALTER INDEX
statement.- Specified by:
alterIndex
in interfaceDSLContext
- See Also:
DSL.alterIndex(Name)
-
alterIndexIfExists
public AlterIndexStep alterIndexIfExists(String index)
Description copied from interface:DSLContext
Create a new DSLALTER INDEX
statement.- Specified by:
alterIndexIfExists
in interfaceDSLContext
- See Also:
DSL.alterIndexIfExists(String)
-
alterIndexIfExists
public AlterIndexStep alterIndexIfExists(Name index)
Description copied from interface:DSLContext
Create a new DSLALTER INDEX
statement.- Specified by:
alterIndexIfExists
in interfaceDSLContext
- See Also:
DSL.alterIndexIfExists(Name)
-
alterIndexIfExists
public AlterIndexStep alterIndexIfExists(Index index)
Description copied from interface:DSLContext
Create a new DSLALTER INDEX
statement.- Specified by:
alterIndexIfExists
in interfaceDSLContext
- See Also:
DSL.alterIndexIfExists(Name)
-
dropSchema
public DropSchemaStep dropSchema(String schema)
Description copied from interface:DSLContext
Create a new DSLDROP SCHEMA
statement.- Specified by:
dropSchema
in interfaceDSLContext
- See Also:
DSL.dropSchema(String)
-
dropSchema
public DropSchemaStep dropSchema(Name schema)
Description copied from interface:DSLContext
Create a new DSLDROP SCHEMA
statement.- Specified by:
dropSchema
in interfaceDSLContext
- See Also:
DSL.dropSchema(Name)
-
dropSchema
public DropSchemaStep dropSchema(Schema schema)
Description copied from interface:DSLContext
Create a new DSLDROP SCHEMA
statement.- Specified by:
dropSchema
in interfaceDSLContext
- See Also:
DSL.dropSchema(Schema)
-
dropSchemaIfExists
public DropSchemaStep dropSchemaIfExists(String schema)
Description copied from interface:DSLContext
Create a new DSLDROP SCHEMA
statement.- Specified by:
dropSchemaIfExists
in interfaceDSLContext
- See Also:
DSL.dropSchemaIfExists(String)
-
dropSchemaIfExists
public DropSchemaStep dropSchemaIfExists(Name schema)
Description copied from interface:DSLContext
Create a new DSLDROP SCHEMA
statement.- Specified by:
dropSchemaIfExists
in interfaceDSLContext
- See Also:
DSL.dropSchemaIfExists(Name)
-
dropSchemaIfExists
public DropSchemaStep dropSchemaIfExists(Schema schema)
Description copied from interface:DSLContext
Create a new DSLDROP SCHEMA
statement.- Specified by:
dropSchemaIfExists
in interfaceDSLContext
- See Also:
DSL.dropSchemaIfExists(Schema)
-
dropView
public DropViewFinalStep dropView(String view)
Description copied from interface:DSLContext
Create a new DSLDROP VIEW
statement.- Specified by:
dropView
in interfaceDSLContext
- See Also:
DSL.dropView(String)
-
dropView
public DropViewFinalStep dropView(Name view)
Description copied from interface:DSLContext
Create a new DSLDROP VIEW
statement.- Specified by:
dropView
in interfaceDSLContext
- See Also:
DSL.dropView(Name)
-
dropView
public DropViewFinalStep dropView(Table<?> view)
Description copied from interface:DSLContext
Create a new DSLDROP VIEW
statement.- Specified by:
dropView
in interfaceDSLContext
- See Also:
DSL.dropView(Table)
-
dropViewIfExists
public DropViewFinalStep dropViewIfExists(String view)
Description copied from interface:DSLContext
Create a new DSLDROP VIEW IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropViewIfExists
in interfaceDSLContext
- See Also:
DSL.dropViewIfExists(String)
-
dropViewIfExists
public DropViewFinalStep dropViewIfExists(Name view)
Description copied from interface:DSLContext
Create a new DSLDROP VIEW IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropViewIfExists
in interfaceDSLContext
- See Also:
DSL.dropViewIfExists(Name)
-
dropViewIfExists
public DropViewFinalStep dropViewIfExists(Table<?> view)
Description copied from interface:DSLContext
Create a new DSLDROP VIEW IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropViewIfExists
in interfaceDSLContext
- See Also:
DSL.dropViewIfExists(Table)
-
dropTable
public DropTableStep dropTable(String table)
Description copied from interface:DSLContext
Create a new DSLDROP TABLE
statement.- Specified by:
dropTable
in interfaceDSLContext
- See Also:
DSL.dropTable(String)
-
dropTable
public DropTableStep dropTable(Name table)
Description copied from interface:DSLContext
Create a new DSLDROP TABLE
statement.- Specified by:
dropTable
in interfaceDSLContext
- See Also:
DSL.dropTable(Name)
-
dropTable
public DropTableStep dropTable(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLDROP TABLE
statement.- Specified by:
dropTable
in interfaceDSLContext
- See Also:
DSL.dropTable(Table)
-
dropTemporaryTable
public DropTableStep dropTemporaryTable(String table)
Description copied from interface:DSLContext
Create a new DSLDROP TEMPORARY TABLE
statement.- Specified by:
dropTemporaryTable
in interfaceDSLContext
- See Also:
DSL.dropTemporaryTable(String)
-
dropTemporaryTable
public DropTableStep dropTemporaryTable(Name table)
Description copied from interface:DSLContext
Create a new DSLDROP TEMPORARY TABLE
statement.- Specified by:
dropTemporaryTable
in interfaceDSLContext
- See Also:
DSL.dropTemporaryTable(Name)
-
dropTemporaryTable
public DropTableStep dropTemporaryTable(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLDROP TEMPORARY TABLE
statement.- Specified by:
dropTemporaryTable
in interfaceDSLContext
- See Also:
DSL.dropTemporaryTable(Table)
-
dropTemporaryTableIfExists
public DropTableStep dropTemporaryTableIfExists(String table)
Description copied from interface:DSLContext
Create a new DSLDROP TEMPORARY TABLE IF EXISTS
statement.- Specified by:
dropTemporaryTableIfExists
in interfaceDSLContext
- See Also:
DSL.dropTemporaryTableIfExists(String)
-
dropTemporaryTableIfExists
public DropTableStep dropTemporaryTableIfExists(Name table)
Description copied from interface:DSLContext
Create a new DSLDROP TEMPORARY TABLE IF EXISTS
statement.- Specified by:
dropTemporaryTableIfExists
in interfaceDSLContext
- See Also:
DSL.dropTemporaryTableIfExists(Name)
-
dropTemporaryTableIfExists
public DropTableStep dropTemporaryTableIfExists(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLDROP TEMPORARY TABLE IF EXISTS
statement.- Specified by:
dropTemporaryTableIfExists
in interfaceDSLContext
- See Also:
DSL.dropTemporaryTableIfExists(Table)
-
dropTableIfExists
public DropTableStep dropTableIfExists(String table)
Description copied from interface:DSLContext
Create a new DSLDROP TABLE IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropTableIfExists
in interfaceDSLContext
- See Also:
DSL.dropTableIfExists(String)
-
dropTableIfExists
public DropTableStep dropTableIfExists(Name table)
Description copied from interface:DSLContext
Create a new DSLDROP TABLE IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropTableIfExists
in interfaceDSLContext
- See Also:
DSL.dropTableIfExists(Name)
-
dropTableIfExists
public DropTableStep dropTableIfExists(Table<?> table)
Description copied from interface:DSLContext
Create a new DSLDROP TABLE IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropTableIfExists
in interfaceDSLContext
- See Also:
DSL.dropTableIfExists(Table)
-
dropIndex
public DropIndexOnStep dropIndex(String index)
Description copied from interface:DSLContext
Create a new DSLDROP INDEX
statement.- Specified by:
dropIndex
in interfaceDSLContext
- See Also:
DSL.dropIndex(String)
-
dropIndex
public DropIndexOnStep dropIndex(Name index)
Description copied from interface:DSLContext
Create a new DSLDROP INDEX
statement.- Specified by:
dropIndex
in interfaceDSLContext
- See Also:
DSL.dropIndex(Name)
-
dropIndex
public DropIndexOnStep dropIndex(Index index)
Description copied from interface:DSLContext
Create a new DSLDROP INDEX
statement.- Specified by:
dropIndex
in interfaceDSLContext
- See Also:
DSL.dropIndex(Name)
-
dropIndexIfExists
public DropIndexOnStep dropIndexIfExists(String index)
Description copied from interface:DSLContext
Create a new DSLDROP INDEX IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropIndexIfExists
in interfaceDSLContext
- See Also:
DSL.dropIndexIfExists(String)
-
dropIndexIfExists
public DropIndexOnStep dropIndexIfExists(Name index)
Description copied from interface:DSLContext
Create a new DSLDROP INDEX IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropIndexIfExists
in interfaceDSLContext
- See Also:
DSL.dropIndexIfExists(Name)
-
dropIndexIfExists
public DropIndexOnStep dropIndexIfExists(Index index)
Description copied from interface:DSLContext
Create a new DSLDROP INDEX IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropIndexIfExists
in interfaceDSLContext
- See Also:
DSL.dropIndexIfExists(Name)
-
dropSequence
public DropSequenceFinalStep dropSequence(String sequence)
Description copied from interface:DSLContext
Create a new DSLDROP SEQUENCE
statement.- Specified by:
dropSequence
in interfaceDSLContext
- See Also:
DSL.dropSequence(String)
-
dropSequence
public DropSequenceFinalStep dropSequence(Name sequence)
Description copied from interface:DSLContext
Create a new DSLDROP SEQUENCE
statement.- Specified by:
dropSequence
in interfaceDSLContext
- See Also:
DSL.dropSequence(Name)
-
dropSequence
public DropSequenceFinalStep dropSequence(Sequence<?> sequence)
Description copied from interface:DSLContext
Create a new DSLDROP SEQUENCE
statement.- Specified by:
dropSequence
in interfaceDSLContext
- See Also:
DSL.dropSequence(Sequence)
-
dropSequenceIfExists
public DropSequenceFinalStep dropSequenceIfExists(String sequence)
Description copied from interface:DSLContext
Create a new DSLDROP SEQUENCE IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropSequenceIfExists
in interfaceDSLContext
- See Also:
DSL.dropSequenceIfExists(String)
-
dropSequenceIfExists
public DropSequenceFinalStep dropSequenceIfExists(Name sequence)
Description copied from interface:DSLContext
Create a new DSLDROP SEQUENCE IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropSequenceIfExists
in interfaceDSLContext
- See Also:
DSL.dropSequenceIfExists(Name)
-
dropSequenceIfExists
public DropSequenceFinalStep dropSequenceIfExists(Sequence<?> sequence)
Description copied from interface:DSLContext
Create a new DSLDROP SEQUENCE IF EXISTS
statement.If your database doesn't natively support
IF EXISTS
, this is emulated by catching (and ignoring) the relevantSQLException
.- Specified by:
dropSequenceIfExists
in interfaceDSLContext
- See Also:
DSL.dropSequenceIfExists(Sequence)
-
truncate
public final TruncateIdentityStep<Record> truncate(String table)
Description copied from interface:DSLContext
Create a new DSL truncate statement.Synonym for
DSLContext.truncateTable(String)
- Specified by:
truncate
in interfaceDSLContext
-
truncate
public final TruncateIdentityStep<Record> truncate(Name table)
Description copied from interface:DSLContext
Create a new DSL truncate statement.Synonym for
DSLContext.truncateTable(Name)
- Specified by:
truncate
in interfaceDSLContext
-
truncate
public <R extends Record> TruncateIdentityStep<R> truncate(Table<R> table)
Description copied from interface:DSLContext
Create a new DSL truncate statement.Synonym for
DSLContext.truncateTable(Table)
- Specified by:
truncate
in interfaceDSLContext
-
truncateTable
public final TruncateIdentityStep<Record> truncateTable(String table)
Description copied from interface:DSLContext
Create a new DSL truncate statement.Example:
DSLContext create = DSL.using(configuration); create.truncate(table) .execute();
Emulation of
TRUNCATE
Most dialects implement the
TRUNCATE
statement. If it is not supported, it is emulated using an equivalentDELETE
statement. This is particularly true for these dialects:Vendor-specific extensions of
TRUNCATE
Some statements also support extensions of the
TRUNCATE
statement, such as Postgres:create.truncate(table) .restartIdentity() .cascade() .execute();
These vendor-specific extensions are currently not emulated for those dialects that do not support them natively.
- Specified by:
truncateTable
in interfaceDSLContext
- See Also:
DSLContext.truncate(Table)
-
truncateTable
public final TruncateIdentityStep<Record> truncateTable(Name table)
Description copied from interface:DSLContext
Create a new DSL truncate statement.Example:
DSLContext create = DSL.using(configuration); create.truncate(table) .execute();
Emulation of
TRUNCATE
Most dialects implement the
TRUNCATE
statement. If it is not supported, it is emulated using an equivalentDELETE
statement. This is particularly true for these dialects:Vendor-specific extensions of
TRUNCATE
Some statements also support extensions of the
TRUNCATE
statement, such as Postgres:create.truncate(table) .restartIdentity() .cascade() .execute();
These vendor-specific extensions are currently not emulated for those dialects that do not support them natively.
- Specified by:
truncateTable
in interfaceDSLContext
- See Also:
DSLContext.truncate(Name)
-
truncateTable
public <R extends Record> TruncateIdentityStep<R> truncateTable(Table<R> table)
Description copied from interface:DSLContext
Create a new DSL truncate statement.Example:
DSLContext create = DSL.using(configuration); create.truncate(table) .execute();
Emulation of
TRUNCATE
Most dialects implement the
TRUNCATE
statement. If it is not supported, it is emulated using an equivalentDELETE
statement. This is particularly true for these dialects:Vendor-specific extensions of
TRUNCATE
Some statements also support extensions of the
TRUNCATE
statement, such as Postgres:create.truncate(table) .restartIdentity() .cascade() .execute();
These vendor-specific extensions are currently not emulated for those dialects that do not support them natively.
- Specified by:
truncateTable
in interfaceDSLContext
-
grant
public GrantOnStep grant(Privilege privilege)
Description copied from interface:DSLContext
Grant a privilege on a table to user or role.- Specified by:
grant
in interfaceDSLContext
-
grant
public GrantOnStep grant(Privilege... privileges)
Description copied from interface:DSLContext
Grant privileges on a table to user or role.- Specified by:
grant
in interfaceDSLContext
-
grant
public GrantOnStep grant(Collection<? extends Privilege> privileges)
Description copied from interface:DSLContext
Grant privileges on a table to user or role.- Specified by:
grant
in interfaceDSLContext
-
revoke
public RevokeOnStep revoke(Privilege privilege)
Description copied from interface:DSLContext
Revoke a privilege on table from user or role.- Specified by:
revoke
in interfaceDSLContext
-
revoke
public RevokeOnStep revoke(Privilege... privileges)
Description copied from interface:DSLContext
Revoke privileges on table from user or role.- Specified by:
revoke
in interfaceDSLContext
-
revoke
public RevokeOnStep revoke(Collection<? extends Privilege> privileges)
Description copied from interface:DSLContext
Revoke privileges on table from user or role.- Specified by:
revoke
in interfaceDSLContext
-
revokeGrantOptionFor
public RevokeOnStep revokeGrantOptionFor(Privilege privilege)
Description copied from interface:DSLContext
Revoke grant option for a privilege on a table from user or role.- Specified by:
revokeGrantOptionFor
in interfaceDSLContext
-
revokeGrantOptionFor
public RevokeOnStep revokeGrantOptionFor(Privilege... privileges)
Description copied from interface:DSLContext
Revoke grant option for some privileges on a table from user or role.- Specified by:
revokeGrantOptionFor
in interfaceDSLContext
-
revokeGrantOptionFor
public RevokeOnStep revokeGrantOptionFor(Collection<? extends Privilege> privileges)
Description copied from interface:DSLContext
Revoke grant option for some privileges on a table from user or role.- Specified by:
revokeGrantOptionFor
in interfaceDSLContext
-
lastID
public BigInteger lastID()
Description copied from interface:DSLContext
Retrieve the last inserted ID.This is implemented for the following dialects:
SQLDialect.ACCESS
: Using@@identity
SQLDialect.ASE
: Using@@identity
SQLDialect.DERBY
: Usingidentity_val_local()
SQLDialect.H2
: Usingidentity()
SQLDialect.HSQLDB
: Usingidentity()
SQLDialect.INFORMIX
: Usingdbinfo('sqlca.sqlerrd1')
SQLDialect.INGRES
: Usinglast_identity()
SQLDialect.MARIADB
: Usinglast_insert_id()
SQLDialect.MYSQL
: Usinglast_insert_id()
SQLDialect.POSTGRES
: Usinglastval()
SQLDialect.SQLITE
: Usinglast_insert_rowid()
SQLDialect.SQLSERVER
: Using@@identity
SQLDialect.SYBASE
: Using@@identity
SQLDialect.VERTICA
: Usinglast_insert_id()
- Specified by:
lastID
in interfaceDSLContext
- Returns:
- The last inserted ID. This may be
null
in some dialects, if no such number is available.
-
nextval
public BigInteger nextval(String sequence)
Description copied from interface:DSLContext
Convenience method to fetch the NEXTVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.- Specified by:
nextval
in interfaceDSLContext
-
nextval
public BigInteger nextval(Name sequence)
Description copied from interface:DSLContext
Convenience method to fetch the NEXTVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.- Specified by:
nextval
in interfaceDSLContext
-
nextval
public <T extends Number> T nextval(Sequence<T> sequence)
Description copied from interface:DSLContext
Convenience method to fetch the NEXTVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.- Specified by:
nextval
in interfaceDSLContext
-
currval
public BigInteger currval(String sequence)
Description copied from interface:DSLContext
Convenience method to fetch the CURRVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.- Specified by:
currval
in interfaceDSLContext
-
currval
public BigInteger currval(Name sequence)
Description copied from interface:DSLContext
Convenience method to fetch the CURRVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.- Specified by:
currval
in interfaceDSLContext
-
currval
public <T extends Number> T currval(Sequence<T> sequence)
Description copied from interface:DSLContext
Convenience method to fetch the CURRVAL for a sequence directly from thisDSLContext
's underlying JDBCConnection
.- Specified by:
currval
in interfaceDSLContext
-
newRecord
public Record newRecord(Field<?>... fields)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Parameters:
fields
- The fields defining theRecord
type- Returns:
- The new record
-
newRecord
public Record newRecord(Collection<? extends Field<?>> fields)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Parameters:
fields
- The fields defining theRecord
type- Returns:
- The new record
-
newRecord
public <T1> Record1<T1> newRecord(Field<T1> field1)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2> Record2<T1,T2> newRecord(Field<T1> field1, Field<T2> field2)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3> Record3<T1,T2,T3> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4> Record4<T1,T2,T3,T4> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5> Record5<T1,T2,T3,T4,T5> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6> Record6<T1,T2,T3,T4,T5,T6> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7> Record7<T1,T2,T3,T4,T5,T6,T7> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8> Record8<T1,T2,T3,T4,T5,T6,T7,T8> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9> Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> newRecord(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Returns:
- The new record
-
newRecord
public <R extends UDTRecord<R>> R newRecord(UDT<R> type)
Description copied from interface:DSLContext
Create a newUDTRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Type Parameters:
R
- The generic record type- Parameters:
type
- The UDT describing records of type <R>- Returns:
- The new record
-
newRecord
public <R extends Record> R newRecord(Table<R> table)
Description copied from interface:DSLContext
Create a newRecord
that can be inserted into the corresponding table.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Type Parameters:
R
- The generic record type- Parameters:
table
- The table holding records of type <R>- Returns:
- The new record
-
newRecord
public <R extends Record> R newRecord(Table<R> table, Object source)
Description copied from interface:DSLContext
Create a new pre-filledRecord
that can be inserted into the corresponding table.This performs roughly the inverse operation of
Record.into(Class)
The resulting record will have its internal "changed" flags set to true for all values. This means that
UpdatableRecord.store()
will perform anINSERT
statement. If you wish to store the record using anUPDATE
statement, useDSLContext.executeUpdate(UpdatableRecord)
instead.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newRecord
in interfaceDSLContext
- Type Parameters:
R
- The generic record type- Parameters:
table
- The table holding records of type <R>source
- The source to be used to fill the new record- Returns:
- The new record
- See Also:
Record.from(Object)
,Record.into(Class)
-
newResult
public <R extends Record> Result<R> newResult(Table<R> table)
Description copied from interface:DSLContext
Create a new emptyResult
.The result is attached to this
Configuration
by default. This result can be used as a container for records.- Specified by:
newResult
in interfaceDSLContext
- Type Parameters:
R
- The generic record type- Parameters:
table
- The table holding records of type <R>- Returns:
- The new result
-
newResult
public Result<Record> newResult(Field<?>... fields)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Parameters:
fields
- The fields defining theRecord
type- Returns:
- The new record
-
newResult
public Result<Record> newResult(Collection<? extends Field<?>> fields)
Description copied from interface:DSLContext
Create a new emptyRecord
.The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Parameters:
fields
- The fields defining theRecord
type- Returns:
- The new record
-
newResult
public <T1> Result<Record1<T1>> newResult(Field<T1> field1)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2> Result<Record2<T1,T2>> newResult(Field<T1> field1, Field<T2> field2)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3> Result<Record3<T1,T2,T3>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4> Result<Record4<T1,T2,T3,T4>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5> Result<Record5<T1,T2,T3,T4,T5>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6> Result<Record6<T1,T2,T3,T4,T5,T6>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7> Result<Record7<T1,T2,T3,T4,T5,T6,T7>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8> Result<Record8<T1,T2,T3,T4,T5,T6,T7,T8>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9> Result<Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> Result<Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> Result<Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> Result<Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> Result<Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> Result<Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> Result<Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> Result<Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> Result<Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> Result<Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> Result<Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> Result<Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> Result<Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
newResult
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> Result<Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22>> newResult(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7, Field<T8> field8, Field<T9> field9, Field<T10> field10, Field<T11> field11, Field<T12> field12, Field<T13> field13, Field<T14> field14, Field<T15> field15, Field<T16> field16, Field<T17> field17, Field<T18> field18, Field<T19> field19, Field<T20> field20, Field<T21> field21, Field<T22> field22)
Description copied from interface:DSLContext
Create a new emptyResult
.The resulting result is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
newResult
in interfaceDSLContext
- Returns:
- The new result
-
fetch
public <R extends Record> Result<R> fetch(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return results.- Specified by:
fetch
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The result. This will never be
null
. - See Also:
ResultQuery.fetch()
-
fetchLazy
public <R extends Record> Cursor<R> fetchLazy(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a cursor.- Specified by:
fetchLazy
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The cursor. This will never be
null
. - See Also:
ResultQuery.fetchLazy()
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(ResultQuery<R> query)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
.The result is asynchronously completed by a task running in an
Executor
provided by theScope.configuration()
'sConfiguration.executorProvider()
.- Specified by:
fetchAsync
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
ResultQuery.fetchAsync()
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Executor executor, ResultQuery<R> query)
Description copied from interface:DSLContext
Fetch results in a newCompletionStage
that is asynchronously completed by a task running in the given executor.- Specified by:
fetchAsync
in interfaceDSLContext
query
- The query to execute- Returns:
- The completion stage. The completed result will never be
null
. - See Also:
ResultQuery.fetchAsync()
-
fetchStream
public <R extends Record> Stream<R> fetchStream(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a stream.- Specified by:
fetchStream
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The stream
- See Also:
ResultQuery.stream()
-
fetchMany
public <R extends Record> Results fetchMany(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a cursor.- Specified by:
fetchMany
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The results. This will never be
null
. - See Also:
ResultQuery.fetchMany()
-
fetchOne
public <R extends Record> R fetchOne(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a record.- Specified by:
fetchOne
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The record or
null
, if no record was found. - See Also:
ResultQuery.fetchOne()
-
fetchSingle
public <R extends Record> R fetchSingle(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a record.- Specified by:
fetchSingle
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The record. This is never
null
. - See Also:
ResultQuery.fetchSingle()
-
fetchOptional
public <R extends Record> Optional<R> fetchOptional(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a record.- Specified by:
fetchOptional
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The record
- See Also:
ResultQuery.fetchOptional()
-
fetchValue
public <T> T fetchValue(Table<? extends Record1<T>> table)
Description copied from interface:DSLContext
Fetch a single value from a single column table.- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
table
- The table from which to fetch a value- Returns:
- The value or
null
, if no record was found.
-
fetchValue
public <T,R extends Record1<T>> T fetchValue(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a single value.- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The value or
null
, if no record was found.
-
fetchValue
public <T> T fetchValue(TableField<?,T> field)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a single value.- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
field
- The field for which to fetch a single value.- Returns:
- The value or
null
, if no record was found.
-
fetchValue
public <T> T fetchValue(Field<T> field)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a single value.- Specified by:
fetchValue
in interfaceDSLContext
- Parameters:
field
- The field for which to fetch a single value.- Returns:
- The value or
null
, if no record was found.
-
fetchOptionalValue
public <T,R extends Record1<T>> Optional<T> fetchOptionalValue(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a single value.- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The value.
-
fetchOptionalValue
public <T> Optional<T> fetchOptionalValue(TableField<?,T> field)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return a single value.- Specified by:
fetchOptionalValue
in interfaceDSLContext
- Parameters:
field
- The field for which to fetch a single value.- Returns:
- The value.
-
fetchValues
public <T> List<T> fetchValues(Table<? extends Record1<T>> table)
Description copied from interface:DSLContext
Fetch all values from a single column table.- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
table
- The table from which to fetch values- Returns:
- The values. This will never be
null
.
-
fetchValues
public <T,R extends Record1<T>> List<T> fetchValues(ResultQuery<R> query)
Description copied from interface:DSLContext
Execute aResultQuery
in the context of thisDSLContext
and return all values for the only column.- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The values. This will never be
null
.
-
fetchValues
public <T> List<T> fetchValues(TableField<?,T> field)
Description copied from interface:DSLContext
Fetch all values in a givenTable
'sTableField
.- Specified by:
fetchValues
in interfaceDSLContext
- Parameters:
field
- The field for which to fetch all values.- Returns:
- The values. This will never be
null
.
-
fetchByExample
public <R extends TableRecord<R>> Result<R> fetchByExample(R example)
Description copied from interface:DSLContext
Execute a "Query by Example" (QBE) based on an example record.- Specified by:
fetchByExample
in interfaceDSLContext
- Parameters:
example
- The example record- Returns:
- The resulting records matching the example record.
- See Also:
DSL.condition(Record)
-
fetchCount
public int fetchCount(Select<?> query)
Description copied from interface:DSLContext
Execute aSelect
query in the context of thisDSLContext
and return aCOUNT(*)
value.This wraps a pre-existing
SELECT
query in another one to calculate theCOUNT(*)
value, without modifying the originalSELECT
. An example:
This is particularly useful for those databases that do not support the-- Original query: SELECT id, title FROM book WHERE title LIKE '%a%' -- Wrapped query: SELECT count(*) FROM ( SELECT id, title FROM book WHERE title LIKE '%a%' )
COUNT(*) OVER()
window function to calculate total results in paged queries.- Specified by:
fetchCount
in interfaceDSLContext
- Parameters:
query
- The wrapped query- Returns:
- The
COUNT(*)
result
-
fetchCount
public int fetchCount(Table<?> table)
Description copied from interface:DSLContext
Count the number of records in a table.This executes
SELECT COUNT(*) FROM table
- Specified by:
fetchCount
in interfaceDSLContext
- Parameters:
table
- The table whose records to count- Returns:
- The number of records in the table
-
fetchCount
public int fetchCount(Table<?> table, Condition condition)
Description copied from interface:DSLContext
Count the number of records in a table that satisfy a condition.This executes
SELECT COUNT(*) FROM table WHERE condition
- Specified by:
fetchCount
in interfaceDSLContext
- Parameters:
table
- The table whose records to countcondition
- The condition to apply- Returns:
- The number of records in the table that satisfy a condition
-
fetchCount
public int fetchCount(Table<?> table, Condition... conditions)
Description copied from interface:DSLContext
Count the number of records in a table that satisfy a condition.This executes
SELECT COUNT(*) FROM table WHERE condition
Convenience API for calling
DSLContext.fetchCount(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchCount
in interfaceDSLContext
- Parameters:
table
- The table whose records to countconditions
- The conditions to apply- Returns:
- The number of records in the table that satisfy a condition
-
fetchCount
public int fetchCount(Table<?> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Count the number of records in a table that satisfy a condition.This executes
SELECT COUNT(*) FROM table WHERE condition
Convenience API for calling
DSLContext.fetchCount(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchCount
in interfaceDSLContext
- Parameters:
table
- The table whose records to countconditions
- The conditions to apply- Returns:
- The number of records in the table that satisfy a condition
-
fetchExists
public boolean fetchExists(Select<?> query)
Description copied from interface:DSLContext
Check if aSelect
would return any records, if it were executed.This wraps a pre-existing
SELECT
query in another one to check for result existence, without modifying the originalSELECT
. An example:-- Original query: SELECT id, title FROM book WHERE title LIKE '%a%' -- Wrapped query: SELECT EXISTS ( SELECT id, title FROM book WHERE title LIKE '%a%' )
- Specified by:
fetchExists
in interfaceDSLContext
- Parameters:
query
- The wrapped query- Returns:
- The
EXISTS(...)
result
-
fetchExists
public boolean fetchExists(Table<?> table)
Description copied from interface:DSLContext
Check if a table has any records.This executes
SELECT EXISTS(SELECT * FROM table)
- Specified by:
fetchExists
in interfaceDSLContext
- Parameters:
table
- The table whose records to count- Returns:
- Whether the table contains any records
-
fetchExists
public boolean fetchExists(Table<?> table, Condition condition)
Description copied from interface:DSLContext
Check if a table has any records that satisfy a condition.This executes
SELECT EXISTS(SELECT * FROM table WHERE condition)
- Specified by:
fetchExists
in interfaceDSLContext
- Parameters:
table
- The table whose records to count- Returns:
- Whether the table contains any records that satisfy a condition
-
fetchExists
public boolean fetchExists(Table<?> table, Condition... conditions)
Description copied from interface:DSLContext
Check if a table has any records that satisfy a condition.This executes
SELECT EXISTS(SELECT * FROM table WHERE condition)
Convenience API for calling
DSLContext.fetchExists(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchExists
in interfaceDSLContext
- Parameters:
table
- The table whose records to count- Returns:
- Whether the table contains any records that satisfy a condition
-
fetchExists
public boolean fetchExists(Table<?> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Check if a table has any records that satisfy a condition.This executes
SELECT EXISTS(SELECT * FROM table WHERE condition)
Convenience API for calling
DSLContext.fetchExists(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchExists
in interfaceDSLContext
- Parameters:
table
- The table whose records to count- Returns:
- Whether the table contains any records that satisfy a condition
-
execute
public int execute(Query query)
Description copied from interface:DSLContext
Execute aQuery
in the context of thisDSLContext
.- Specified by:
execute
in interfaceDSLContext
- Parameters:
query
- The query to execute- Returns:
- The number of affected rows
- See Also:
Query.execute()
-
fetch
public <R extends Record> Result<R> fetch(Table<R> table)
Description copied from interface:DSLContext
Execute and return all records for
.SELECT table.col1, table.col2 FROM table
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetch
in interfaceDSLContext
- Returns:
- The results from the executed query. This will never be
null
.
-
fetch
public <R extends Record> Result<R> fetch(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return all records for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetch
in interfaceDSLContext
- Returns:
- The results from the executed query. This will never be
null
.
-
fetch
public <R extends Record> Result<R> fetch(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return all records for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetch(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetch
in interfaceDSLContext
- Returns:
- The results from the executed query. This will never be
null
.
-
fetch
public <R extends Record> Result<R> fetch(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return all records for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetch(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetch
in interfaceDSLContext
- Returns:
- The results from the executed query. This will never be
null
.
-
fetchOne
public <R extends Record> R fetchOne(Table<R> table)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchOne
in interfaceDSLContext
- Returns:
- The record or
null
, if no record was found.
-
fetchOne
public <R extends Record> R fetchOne(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchOne
in interfaceDSLContext
- Returns:
- The record or
null
, if no record was found.
-
fetchOne
public <R extends Record> R fetchOne(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchOne(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchOne
in interfaceDSLContext
- Returns:
- The record or
null
, if no record was found.
-
fetchOne
public <R extends Record> R fetchOne(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchOne(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchOne
in interfaceDSLContext
- Returns:
- The record or
null
, if no record was found.
-
fetchSingle
public <R extends Record> R fetchSingle(Table<R> table)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT table.col1, table.col2 FROM table
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <R extends Record> R fetchSingle(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <R extends Record> R fetchSingle(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <R extends Record> R fetchSingle(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public Record fetchSingle(SelectField<?>... fields) throws DataAccessException
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
. - Throws:
DataAccessException
- if something went wrong executing the query
-
fetchSingle
public Record fetchSingle(Collection<? extends SelectField<?>> fields) throws DataAccessException
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
. - Throws:
DataAccessException
- if something went wrong executing the query
-
fetchSingle
public <T1> Record1<T1> fetchSingle(SelectField<T1> field1)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2> Record2<T1,T2> fetchSingle(SelectField<T1> field1, SelectField<T2> field2)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3> Record3<T1,T2,T3> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4> Record4<T1,T2,T3,T4> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5> Record5<T1,T2,T3,T4,T5> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6> Record6<T1,T2,T3,T4,T5,T6> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7> Record7<T1,T2,T3,T4,T5,T6,T7> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8> Record8<T1,T2,T3,T4,T5,T6,T7,T8> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9> Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> Record10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> Record12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> Record13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> Record14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> Record15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> Record16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> Record17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> Record18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> Record19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> Record20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> Record21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchSingle
public <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> Record22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22> fetchSingle(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5, SelectField<T6> field6, SelectField<T7> field7, SelectField<T8> field8, SelectField<T9> field9, SelectField<T10> field10, SelectField<T11> field11, SelectField<T12> field12, SelectField<T13> field13, SelectField<T14> field14, SelectField<T15> field15, SelectField<T16> field16, SelectField<T17> field17, SelectField<T18> field18, SelectField<T19> field19, SelectField<T20> field20, SelectField<T21> field21, SelectField<T22> field22)
Description copied from interface:DSLContext
Execute and return exactly one record for
.SELECT F1, F2, ..., FN
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchSingle(ResultQuery)
withDSL.select(SelectFieldOrAsterisk...)
.- Specified by:
fetchSingle
in interfaceDSLContext
- Returns:
- The record. This is never
null
.
-
fetchOptional
public <R extends Record> Optional<R> fetchOptional(Table<R> table)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchOptional
in interfaceDSLContext
- Returns:
- The record
-
fetchOptional
public <R extends Record> Optional<R> fetchOptional(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchOptional
in interfaceDSLContext
- Returns:
- The record
-
fetchOptional
public <R extends Record> Optional<R> fetchOptional(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchOptional(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchOptional
in interfaceDSLContext
- Returns:
- The record
-
fetchOptional
public <R extends Record> Optional<R> fetchOptional(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchOptional(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchOptional
in interfaceDSLContext
- Returns:
- The record
-
fetchAny
public <R extends Record> R fetchAny(Table<R> table)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table LIMIT 1
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchAny
in interfaceDSLContext
- Returns:
- The record or
null
if no record was returned
-
fetchAny
public <R extends Record> R fetchAny(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition LIMIT 1
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchAny
in interfaceDSLContext
- Returns:
- The record or
null
if no record was returned
-
fetchAny
public <R extends Record> R fetchAny(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition LIMIT 1
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchAny(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchAny
in interfaceDSLContext
- Returns:
- The record or
null
if no record was returned
-
fetchAny
public <R extends Record> R fetchAny(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return zero or one record for
.SELECT table.col1, table.col2 FROM table WHERE condition LIMIT 1
The resulting record is attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchAny(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchAny
in interfaceDSLContext
- Returns:
- The record or
null
if no record was returned
-
fetchLazy
public <R extends Record> Cursor<R> fetchLazy(Table<R> table)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchLazy
in interfaceDSLContext
- Returns:
- The cursor. This will never be
null
.
-
fetchLazy
public <R extends Record> Cursor<R> fetchLazy(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchLazy
in interfaceDSLContext
- Returns:
- The cursor. This will never be
null
.
-
fetchLazy
public <R extends Record> Cursor<R> fetchLazy(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchLazy(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchLazy
in interfaceDSLContext
- Returns:
- The cursor. This will never be
null
.
-
fetchLazy
public <R extends Record> Cursor<R> fetchLazy(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchLazy(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchLazy
in interfaceDSLContext
- Returns:
- The cursor. This will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Table<R> table)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchAsync(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchAsync(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Executor executor, Table<R> table)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Executor executor, Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Executor executor, Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchAsync(Executor, Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchAsync
public <R extends Record> CompletionStage<Result<R>> fetchAsync(Executor executor, Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return all records asynchronously for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchAsync(Executor, Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchAsync
in interfaceDSLContext
- Returns:
- The completion stage. The completed result will never be
null
.
-
fetchStream
public <R extends Record> Stream<R> fetchStream(Table<R> table)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchStream
in interfaceDSLContext
-
fetchStream
public <R extends Record> Stream<R> fetchStream(Table<R> table, Condition condition)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.- Specified by:
fetchStream
in interfaceDSLContext
-
fetchStream
public <R extends Record> Stream<R> fetchStream(Table<R> table, Condition... conditions)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchStream(Table, Condition)
withDSL.and(Condition...)
.- Specified by:
fetchStream
in interfaceDSLContext
-
fetchStream
public <R extends Record> Stream<R> fetchStream(Table<R> table, Collection<? extends Condition> conditions)
Description copied from interface:DSLContext
Execute and return all records lazily for
.SELECT table.col1, table.col2 FROM table WHERE condition
The result and its contained records are attached to this
Configuration
by default. UseSettings.isAttachRecords()
to override this behaviour.Convenience API for calling
DSLContext.fetchStream(Table, Condition)
withDSL.and(Collection)
.- Specified by:
fetchStream
in interfaceDSLContext
-
executeInsert
public int executeInsert(TableRecord<?> record)
Description copied from interface:DSLContext
Insert one record.This executes something like the following statement:
INSERT INTO [table] ... VALUES [record]
Unlike
UpdatableRecord.store()
, this does not change any of the argumentrecord
's internal "changed" flags, such that a subsequent call toUpdatableRecord.store()
might lead to anotherINSERT
statement being executed.- Specified by:
executeInsert
in interfaceDSLContext
- Returns:
- The number of inserted records
-
executeUpdate
public int executeUpdate(UpdatableRecord<?> record)
Description copied from interface:DSLContext
Update a table.UPDATE [table] SET [modified values in record] WHERE [record is supplied record]
- Specified by:
executeUpdate
in interfaceDSLContext
- Returns:
- The number of updated records
-
executeUpdate
public int executeUpdate(TableRecord<?> record, Condition condition)
Description copied from interface:DSLContext
Update a table.UPDATE [table] SET [modified values in record] WHERE [condition]
- Specified by:
executeUpdate
in interfaceDSLContext
- Returns:
- The number of updated records
-
executeDelete
public int executeDelete(UpdatableRecord<?> record)
Description copied from interface:DSLContext
Delete a record from a table.DELETE FROM [table] WHERE [record is supplied record]
- Specified by:
executeDelete
in interfaceDSLContext
- Returns:
- The number of deleted records
-
executeDelete
public int executeDelete(TableRecord<?> record, Condition condition)
Description copied from interface:DSLContext
Delete a record from a table.DELETE FROM [table] WHERE [condition]
- Specified by:
executeDelete
in interfaceDSLContext
- Returns:
- The number of deleted records
-
configuration
public final Configuration configuration()
Description copied from interface:Scope
The configuration of the current scope.- Specified by:
configuration
in interfaceScope
-
dsl
public final DSLContext dsl()
Description copied from interface:Scope
Wrap theScope.configuration()
in aDSLContext
, providing access to the configuration-contextual DSL to construct executable queries.
-
settings
public final Settings settings()
Description copied from interface:Scope
The settings wrapped by this context.This method is a convenient way of accessing
configuration().settings()
.
-
dialect
public final SQLDialect dialect()
Description copied from interface:Scope
TheSQLDialect
wrapped by this context.This method is a convenient way of accessing
configuration().dialect()
.
-
family
public final SQLDialect family()
Description copied from interface:Scope
TheSQLDialect.family()
wrapped by this context.This method is a convenient way of accessing
configuration().family()
.
-
data
public final Map<Object,Object> data()
Description copied from interface:Scope
Get all custom data from thisScope
.This is custom data that was previously set to the context using
Scope.data(Object, Object)
. Use custom data if you want to pass data toQueryPart
objects for a givenScope
.
-
data
public final Object data(Object key)
Description copied from interface:Scope
Get some custom data from thisScope
.This is custom data that was previously set to the context using
Scope.data(Object, Object)
. Use custom data if you want to pass data toQueryPart
objects for a givenScope
-
data
public final Object data(Object key, Object value)
Description copied from interface:Scope
Set some custom data to thisScope
.This is custom data that was previously set to the context using
Scope.data(Object, Object)
. Use custom data if you want to pass data toQueryPart
objects for a givenScope
.
-
-