Uses of Interface
org.jooq.Catalog
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Catalog in org.jooq
Modifier and TypeMethodDescriptionArrayOrAssociativeArrayRecord.getCatalog()
Get the record type's catalog.default @Nullable Catalog
EnumType.getCatalog()
The catalog of the enum type, if applicable.@NotNull Catalog
Meta.getCatalog
(String name) Get a catalog object by name from the underlying meta data source, ornull
if no such object exists.@NotNull Catalog
Meta.getCatalog
(Name name) Get a catalog object by name from the underlying meta data source, ornull
if no such object exists.@Nullable Catalog
Qualified.getCatalog()
Get the object's catalog.@Nullable Catalog
Schema.getCatalog()
The catalog of this schema.@Nullable Catalog
Deprecated, for removal: This API element is subject to removal in a future version.Modifier and TypeMethodDescriptionMeta.getCatalogs()
Get all catalog objects from the underlying meta data source.Modifier and TypeMethodDescription@NotNull AlterDatabaseStep
DSLContext.alterDatabase
(Catalog database) TheALTER DATABASE
statement.@NotNull AlterDatabaseStep
DSLContext.alterDatabaseIfExists
(Catalog database) TheALTER DATABASE IF EXISTS
statement.@NotNull CreateDatabaseFinalStep
DSLContext.createDatabase
(Catalog database) TheCREATE DATABASE
statement.@NotNull CreateDatabaseFinalStep
DSLContext.createDatabaseIfNotExists
(Catalog database) TheCREATE DATABASE IF NOT EXISTS
statement.@NotNull Queries
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext.ddl
(Catalog schema, DDLExportConfiguration configuration) Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull DropDatabaseFinalStep
DSLContext.dropDatabase
(Catalog database) TheDROP DATABASE
statement.@NotNull DropDatabaseFinalStep
DSLContext.dropDatabaseIfExists
(Catalog database) TheDROP DATABASE IF EXISTS
statement.@NotNull InformationSchema
DSLContext.informationSchema
(Catalog catalog) Convenience method forMeta.informationSchema()
.@NotNull InformationSchema
DSLContext.informationSchema
(Catalog... catalogs) Convenience method forMeta.informationSchema()
.@Nullable Catalog
Deprecated, for removal: This API element is subject to removal in a future version.@NotNull Meta
Access the database meta data from explicit catalog information.@NotNull AlterDatabaseFinalStep
Add theRENAME TO
clause to theALTER DATABASE
statement.@NotNull RowCountQuery
DSLContext.setCatalog
(Catalog catalog) TheSET CATALOG
statement.Modifier and TypeMethodDescription@NotNull Meta
Meta.filterCatalogs
(Predicate<? super Catalog> filter) Create a wrapperMeta
instance filtering out some catalogs. -
Uses of Catalog in org.jooq.impl
Modifier and TypeClassDescriptionclass
A common base class for database catalogsfinal class
A schema that references a lazy initialisableCatalog
singleton, for use in generated code.Modifier and TypeMethodDescription@NotNull Catalog
QOM.SetCatalog.$catalog()
@NotNull Catalog
QOM.AlterDatabase.$database()
@NotNull Catalog
QOM.CreateDatabase.$database()
@NotNull Catalog
QOM.DropDatabase.$database()
@NotNull Catalog
QOM.AlterDatabase.$renameTo()
static @NotNull Catalog
Create a qualified catalog, given its catalog name.static @NotNull Catalog
Create a qualified catalog, given its catalog name.final Catalog
AbstractRoutine.getCatalog()
final Catalog
ArrayRecordImpl.getCatalog()
final Catalog
AssociativeArrayRecordImpl.getCatalog()
final Catalog
LazySchema.getCatalog()
final Catalog
PackageImpl.getCatalog()
SchemaImpl.getCatalog()
final Catalog
SequenceImpl.getCatalog()
final Catalog
UDTImpl.getCatalog()
Modifier and TypeMethodDescription@NotNull QOM.SetCatalog
@NotNull QOM.AlterDatabase
@NotNull QOM.CreateDatabase
@NotNull QOM.DropDatabase
@NotNull QOM.AlterDatabase
DefaultDSLContext.alterDatabase
(Catalog database) static AlterDatabaseStep
DSL.alterDatabase
(Catalog database) TheALTER DATABASE
statement.DefaultDSLContext.alterDatabaseIfExists
(Catalog database) static AlterDatabaseStep
DSL.alterDatabaseIfExists
(Catalog database) TheALTER DATABASE IF EXISTS
statement.DefaultDSLContext.createDatabase
(Catalog database) static CreateDatabaseFinalStep
DSL.createDatabase
(Catalog database) TheCREATE DATABASE
statement.DefaultDSLContext.createDatabaseIfNotExists
(Catalog database) static CreateDatabaseFinalStep
DSL.createDatabaseIfNotExists
(Catalog database) TheCREATE DATABASE IF NOT EXISTS
statement.DefaultDSLContext.ddl
(Catalog catalog, DDLExportConfiguration exportConfiguration) DefaultDSLContext.dropDatabase
(Catalog database) static DropDatabaseFinalStep
DSL.dropDatabase
(Catalog database) TheDROP DATABASE
statement.DefaultDSLContext.dropDatabaseIfExists
(Catalog database) static DropDatabaseFinalStep
DSL.dropDatabaseIfExists
(Catalog database) TheDROP DATABASE IF EXISTS
statement.DefaultDSLContext.informationSchema
(Catalog catalog) DefaultDSLContext.informationSchema
(Catalog... catalogs) DefaultDSLContext.setCatalog
(Catalog catalog) static RowCountQuery
DSL.setCatalog
(Catalog catalog) TheSET CATALOG
statement.ModifierConstructorDescriptionCatalogMetaProvider
(Configuration configuration, Catalog... catalogs) SchemaImpl
(String name, Catalog catalog) SchemaImpl
(String name, Catalog catalog, String comment) SchemaImpl
(Name name, Catalog catalog) SchemaImpl
(Name name, Catalog catalog, Comment comment) ModifierConstructorDescriptionCatalogMetaProvider
(Configuration configuration, Collection<? extends Catalog> catalogs) LazyCatalog
(Name name, LazySupplier<Catalog> supplier)