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 TypeMethodDescriptionArrayRecord.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 catalogsclass
A schema that references a lazy initialisableCatalog
singleton, for use in generated code.Modifier and TypeMethodDescriptionstatic @NotNull Catalog
Create a qualified catalog, given its catalog name.static @NotNull Catalog
Create a qualified catalog, given its catalog name.AbstractRoutine.getCatalog()
ArrayRecordImpl.getCatalog()
LazySchema.getCatalog()
PackageImpl.getCatalog()
SchemaImpl.getCatalog()
SequenceImpl.getCatalog()
UDTImpl.getCatalog()
Modifier and TypeMethodDescriptionDefaultDSLContext.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)