Uses of Interface
org.jooq.Queries
-
Packages that use Queries Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of Queries in org.jooq
Methods in org.jooq that return Queries Modifier and Type Method Description @NotNull Queries
Queries. concat(Queries other)
Return a new instance combining both sets of queries.@NotNull Queries
DSLContext. ddl(Collection<? extends Table<?>> tables)
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext. ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Catalog catalog)
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext. ddl(Catalog schema, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Catalog schema, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Schema schema)
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext. ddl(Schema schema, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Schema schema, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Table<?> table)
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext. ddl(Table<?>... tables)
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext. ddl(Table<?>[] tables, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Table<?>[] tables, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Table<?> table, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Table<?> table, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
Meta. ddl()
Generate a creation script for the entire meta data.@NotNull Queries
Meta. ddl(DDLExportConfiguration configuration)
Generate a creation script for the entire meta data.@NotNull Queries
Meta. migrateTo(Meta other)
Generate a migration script to get from this meta data to another one.@NotNull Queries
Meta. migrateTo(Meta other, MigrationConfiguration configuration)
Generate a migration script to get from this meta data to another one.@NotNull Queries
Version. migrateTo(Version version)
Produce a migration to a new version.@NotNull Queries
MigrationContext. migrationQueries()
The complete set ofQueries
that are executed betweenMigrationContext.migrationFrom()
andMigrationContext.migrationTo()
.@NotNull Queries
Parser. parse(String sql)
Parse a SQL string to a set of queries.@NotNull Queries
Parser. parse(String sql, Object... bindings)
Parse a SQL string with bind variables to a set of queries.@NotNull Queries
DSLContext. queries(Collection<? extends Query> queries)
Wrap a collection of queries.@NotNull Queries
DSLContext. queries(Query... queries)
Wrap a collection of queries.Queries
Migration. queries()
The queries that are executed by the migration.@NotNull Queries
MigrationContext. queries()
The complete set ofQueries
that are executed betweenMigrationContext.queriesFrom()
andMigrationContext.queriesTo()
.Methods in org.jooq with parameters of type Queries Modifier and Type Method Description @NotNull Meta
Meta. apply(Queries migration)
Apply a migration to this meta to produce a newMeta
.@NotNull Version
Version. apply(String id, Queries migration)
Apply a migration to produce a new version.@NotNull Batch
DSLContext. batch(Queries queries)
Create a batch statement to execute a set of queries in batch mode (without bind values).@NotNull Queries
Queries. concat(Queries other)
Return a new instance combining both sets of queries. -
Uses of Queries in org.jooq.impl
Methods in org.jooq.impl that return Queries Modifier and Type Method Description Queries
DefaultDSLContext. ddl(Collection<? extends Table<?>> tables)
Queries
DefaultDSLContext. ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Catalog catalog)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Schema schema)
Queries
DefaultDSLContext. ddl(Schema schema, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Schema schema, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Table... tables)
Queries
DefaultDSLContext. ddl(Table[] tables, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Table[] tables, DDLFlag... flags)
Queries
DefaultDSLContext. ddl(Table<?> table)
Queries
DefaultDSLContext. ddl(Table<?> table, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Table<?> table, DDLFlag... flags)
Queries
DefaultDSLContext. queries(Collection<? extends Query> queries)
Queries
DefaultDSLContext. queries(Query... queries)
static @NotNull Queries
DSL. queries(Collection<? extends Query> queries)
Wrap a collection of queries.static @NotNull Queries
DSL. queries(Query... queries)
Wrap a collection of queries.Methods in org.jooq.impl with parameters of type Queries Modifier and Type Method Description Batch
DefaultDSLContext. batch(Queries queries)
-