Uses of Class
org.jooq.DDLExportConfiguration
-
Packages that use DDLExportConfiguration 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 DDLExportConfiguration in org.jooq
Methods in org.jooq that return DDLExportConfiguration Modifier and Type Method Description DDLExportConfiguration
DDLExportConfiguration. createSchemaIfNotExists(boolean newCreateSchemaIfNotExists)
Whether to generateCREATE SCHEMA IF NOT EXISTS
statements.DDLExportConfiguration
DDLExportConfiguration. createTableIfNotExists(boolean newCreateTableIfNotExists)
Whether to generateCREATE TABLE IF NOT EXISTS
statements.DDLExportConfiguration
DDLExportConfiguration. flags(Collection<DDLFlag> newFlags)
TheDDLFlag
that are enabled on this configuration.DDLExportConfiguration
DDLExportConfiguration. flags(DDLFlag... newFlags)
TheDDLFlag
that are enabled on this configuration.Methods in org.jooq with parameters of type DDLExportConfiguration Modifier and Type Method Description Queries
DSLContext. ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration configuration)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Catalog schema, DDLExportConfiguration configuration)
Generate a partial creation script for the entire catalog.Queries
DSLContext. ddl(Schema schema, DDLExportConfiguration configuration)
Generate a partial creation script for the entire schema.Queries
DSLContext. ddl(Table<?>[] tables, DDLExportConfiguration configuration)
Generate the complete creation script for tables.Queries
DSLContext. ddl(Table<?> table, DDLExportConfiguration configuration)
Generate a partial creation script for a table. -
Uses of DDLExportConfiguration in org.jooq.impl
Methods in org.jooq.impl with parameters of type DDLExportConfiguration Modifier and Type Method Description Queries
DefaultDSLContext. ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Schema schema, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Table[] tables, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Table<?> table, DDLExportConfiguration exportConfiguration)
-