Uses of Class
org.jooq.DDLExportConfiguration
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of DDLExportConfiguration in org.jooq
Modifier and TypeMethodDescriptionDDLExportConfiguration.createDomainIfNotExists(boolean newCreateDomainIfNotExists)
Whether to generateCREATE DOMAIN IF NOT EXISTS
statements.DDLExportConfiguration.createIndexIfNotExists(boolean newCreateIndexIfNotExists)
Whether to generateCREATE INDEX IF NOT EXISTS
statements.DDLExportConfiguration.createOrReplaceView(boolean newCreateOrReplaceView)
Whether to generateCREATE OR REPLACE VIEW
statements.DDLExportConfiguration.createSchemaIfNotExists(boolean newCreateSchemaIfNotExists)
Whether to generateCREATE SCHEMA IF NOT EXISTS
statements.DDLExportConfiguration.createSequenceIfNotExists(boolean newCreateSequenceIfNotExists)
Whether to generateCREATE SEQUENCE IF NOT EXISTS
statements.DDLExportConfiguration.createTableIfNotExists(boolean newCreateTableIfNotExists)
Whether to generateCREATE TABLE IF NOT EXISTS
statements.DDLExportConfiguration.createViewIfNotExists(boolean newCreateViewIfNotExists)
Whether to generateCREATE VIEW IF NOT EXISTS
statements.DDLExportConfiguration.defaultSequenceFlags(boolean newDefaultSequenceFlags)
Whether to explicitly produce defaults for all sequence flags, when they're not defined explicitly.DDLExportConfiguration.flags(Collection<DDLFlag> newFlags)
TheDDLFlag
that are enabled on this configuration.TheDDLFlag
that are enabled on this configuration.DDLExportConfiguration.includeConstraintsOnViews(boolean newIncludeConstraintsOnViews)
Whether to include constraints on views.DDLExportConfiguration.respectCatalogOrder(boolean newRespectCatalogOrder)
Whether to respect the catalog order produced by theMeta
source when generated catalog DDL.DDLExportConfiguration.respectColumnOrder(boolean newRespectColumnOrder)
Whether to respect the column order produced by theMeta
source when generated column DDL.DDLExportConfiguration.respectConstraintOrder(boolean newRespectConstraintOrder)
Whether to respect the constraint order produced by theMeta
source when generated constraint DDL.DDLExportConfiguration.respectDomainOrder(boolean newRespectDomainOrder)
Whether to respect the sequence order produced by theMeta
source when generated sequence DDL.DDLExportConfiguration.respectIndexOrder(boolean newRespectIndexOrder)
Whether to respect the index order produced by theMeta
source when generated index DDL.DDLExportConfiguration.respectSchemaOrder(boolean newRespectSchemaOrder)
Whether to respect the schema order produced by theMeta
source when generated schema DDL.DDLExportConfiguration.respectSequenceOrder(boolean newRespectSequenceOrder)
Whether to respect the sequence order produced by theMeta
source when generated sequence DDL.DDLExportConfiguration.respectTableOrder(boolean newRespectTableOrder)
Whether to respect the table order produced by theMeta
source when generated table DDL.Modifier and TypeMethodDescription@NotNull Queries
DSLContext.ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl(Catalog schema, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl(Schema schema, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl(Table<?>[] tables, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext.ddl(Table<?> table, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
Meta.ddl(DDLExportConfiguration configuration)
Generate a creation script for the entire meta data. -
Uses of DDLExportConfiguration in org.jooq.impl
Modifier and TypeMethodDescriptionDefaultDSLContext.ddl(Collection<? extends Table<?>> tables, DDLExportConfiguration exportConfiguration)
DefaultDSLContext.ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)
DefaultDSLContext.ddl(Schema schema, DDLExportConfiguration exportConfiguration)
DefaultDSLContext.ddl(Table[] tables, DDLExportConfiguration exportConfiguration)
DefaultDSLContext.ddl(Table<?> table, DDLExportConfiguration exportConfiguration)