Uses of Interface
org.jooq.Queries
-
Packages that use Queries Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of Queries in org.jooq
Methods in org.jooq that return Queries Modifier and Type Method Description Queries
DSLContext. ddl(Collection<? extends Table<?>> tables)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration configuration)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Collection<? extends Table<?>> tables, DDLFlag... flags)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Catalog catalog)
Generate the complete creation script for the entire catalog.Queries
DSLContext. ddl(Catalog schema, DDLExportConfiguration configuration)
Generate a partial creation script for the entire catalog.Queries
DSLContext. ddl(Catalog schema, DDLFlag... flags)
Generate a partial creation script for the entire catalog.Queries
DSLContext. ddl(Schema schema)
Generate the complete creation script for the entire schema.Queries
DSLContext. ddl(Schema schema, DDLExportConfiguration configuration)
Generate a partial creation script for the entire schema.Queries
DSLContext. ddl(Schema schema, DDLFlag... flags)
Generate a partial creation script for the entire schema.Queries
DSLContext. ddl(Table<?> table)
Generate the complete creation script for a table.Queries
DSLContext. ddl(Table<?>... tables)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Table<?>[] tables, DDLExportConfiguration configuration)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Table<?>[] tables, DDLFlag... flags)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Table<?> table, DDLExportConfiguration configuration)
Generate a partial creation script for a table.Queries
DSLContext. ddl(Table<?> table, DDLFlag... flags)
Generate a partial creation script for a table.Queries
Parser. parse(String sql)
Parse a SQL string to a set of queries.Queries
Parser. parse(String sql, Object... bindings)
Parse a SQL string with bind variables to a set of queries.Queries
DSLContext. queries(Collection<? extends Query> queries)
Wrap a collection of queries.Queries
DSLContext. queries(Query... queries)
Wrap a collection of queries.Methods in org.jooq with parameters of type Queries Modifier and Type Method Description Batch
DSLContext. batch(Queries queries)
Create a batch statement to execute a set of queries in batch mode (without bind values). -
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 Queries
DSL. queries(Collection<? extends Query> queries)
Wrap a collection of queries.static 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)
-