Uses of Interface
org.jooq.Catalog
Packages that use 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 CatalogEnumType.getCatalog()The catalog of the enum type, if applicable.@NotNull CatalogMeta.getCatalog(String name)Get a catalog object by name from the underlying meta data source, ornullif no such object exists.@NotNull CatalogMeta.getCatalog(Name name)Get a catalog object by name from the underlying meta data source, ornullif no such object exists.@Nullable CatalogQualified.getCatalog()Get the object's catalog.@Nullable CatalogSchema.getCatalog()The catalog of this schema.@Nullable CatalogDeprecated, 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 AlterDatabaseStepDSLContext.alterDatabase(Catalog database)TheALTER DATABASEstatement.@NotNull AlterDatabaseStepDSLContext.alterDatabaseIfExists(Catalog database)TheALTER DATABASE IF EXISTSstatement.@NotNull CreateDatabaseFinalStepDSLContext.createDatabase(Catalog database)TheCREATE DATABASEstatement.@NotNull CreateDatabaseFinalStepDSLContext.createDatabaseIfNotExists(Catalog database)TheCREATE DATABASE IF NOT EXISTSstatement.@NotNull QueriesConvenience method forMeta.ddl().@NotNull QueriesDSLContext.ddl(Catalog schema, DDLExportConfiguration configuration)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesConvenience method forMeta.ddl(DDLExportConfiguration).@NotNull DropDatabaseFinalStepDSLContext.dropDatabase(Catalog database)TheDROP DATABASEstatement.@NotNull DropDatabaseFinalStepDSLContext.dropDatabaseIfExists(Catalog database)TheDROP DATABASE IF EXISTSstatement.@NotNull InformationSchemaDSLContext.informationSchema(Catalog catalog)Convenience method forMeta.informationSchema().@NotNull InformationSchemaDSLContext.informationSchema(Catalog... catalogs)Convenience method forMeta.informationSchema().@Nullable CatalogDeprecated, for removal: This API element is subject to removal in a future version.@NotNull MetaAccess the database meta data from explicit catalog information.@NotNull AlterDatabaseFinalStepAdd theRENAME TOclause to theALTER DATABASEstatement.@NotNull RowCountQueryDSLContext.setCatalog(Catalog catalog)TheSET CATALOGstatement.Modifier and TypeMethodDescription@NotNull MetaMeta.filterCatalogs(Predicate<? super Catalog> filter)Create a wrapperMetainstance filtering out some catalogs. -
Uses of Catalog in org.jooq.impl
Classes in org.jooq.impl that implement CatalogModifier and TypeClassDescriptionclassA common base class for database catalogsclassA schema that references a lazy initialisableCatalogsingleton, for use in generated code.Methods in org.jooq.impl that return CatalogModifier and TypeMethodDescriptionstatic @NotNull CatalogCreate a qualified catalog, given its catalog name.static @NotNull CatalogCreate a qualified catalog, given its catalog name.AbstractRoutine.getCatalog()ArrayRecordImpl.getCatalog()LazySchema.getCatalog()PackageImpl.getCatalog()SchemaImpl.getCatalog()SequenceImpl.getCatalog()UDTImpl.getCatalog()Methods in org.jooq.impl with parameters of type CatalogModifier and TypeMethodDescriptionDefaultDSLContext.alterDatabase(Catalog database)static AlterDatabaseStepDSL.alterDatabase(Catalog database)TheALTER DATABASEstatement.DefaultDSLContext.alterDatabaseIfExists(Catalog database)static AlterDatabaseStepDSL.alterDatabaseIfExists(Catalog database)TheALTER DATABASE IF EXISTSstatement.DefaultDSLContext.createDatabase(Catalog database)static CreateDatabaseFinalStepDSL.createDatabase(Catalog database)TheCREATE DATABASEstatement.DefaultDSLContext.createDatabaseIfNotExists(Catalog database)static CreateDatabaseFinalStepDSL.createDatabaseIfNotExists(Catalog database)TheCREATE DATABASE IF NOT EXISTSstatement.DefaultDSLContext.ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)DefaultDSLContext.dropDatabase(Catalog database)static DropDatabaseFinalStepDSL.dropDatabase(Catalog database)TheDROP DATABASEstatement.DefaultDSLContext.dropDatabaseIfExists(Catalog database)static DropDatabaseFinalStepDSL.dropDatabaseIfExists(Catalog database)TheDROP DATABASE IF EXISTSstatement.DefaultDSLContext.informationSchema(Catalog catalog)DefaultDSLContext.informationSchema(Catalog... catalogs)DefaultDSLContext.setCatalog(Catalog catalog)static RowCountQueryDSL.setCatalog(Catalog catalog)TheSET CATALOGstatement.Constructors in org.jooq.impl with parameters of type CatalogModifierConstructorDescriptionCatalogMetaProvider(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)Constructor parameters in org.jooq.impl with type arguments of type CatalogModifierConstructorDescriptionCatalogMetaProvider(Configuration configuration, Collection<? extends Catalog> catalogs)LazyCatalog(Name name, LazySupplier<Catalog> supplier)