Uses of Interface
org.jooq.Catalog
-
Packages that use Catalog Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of Catalog in org.jooq
Methods in org.jooq that return Catalog Modifier and Type Method Description Catalog
ArrayRecord. 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
SchemaMapping. map(Catalog catalog)
Deprecated.Methods in org.jooq that return types with arguments of type Catalog Modifier and Type Method Description @NotNull List<Catalog>
Meta. getCatalogs()
Get all catalog objects from the underlying meta data source.Methods in org.jooq with parameters of type Catalog Modifier and Type Method Description @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
DSLContext. ddl(Catalog catalog)
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext. ddl(Catalog schema, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Catalog schema, DDLFlag... flags)
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
SchemaMapping. map(Catalog catalog)
Deprecated.@NotNull Meta
DSLContext. meta(Catalog... catalogs)
Access the database meta data from explicit catalog information.@NotNull AlterDatabaseFinalStep
AlterDatabaseStep. renameTo(Catalog renameTo)
Add theRENAME TO
clause to theALTER DATABASE
statement.@NotNull RowCountQuery
DSLContext. setCatalog(Catalog catalog)
Set the current catalog to a new value.Method parameters in org.jooq with type arguments of type Catalog Modifier and Type Method Description @NotNull Meta
Meta. filterCatalogs(Meta.Predicate<? super Catalog> filter)
Create a wrapperMeta
instance filtering out some catalogs. -
Uses of Catalog in org.jooq.impl
Classes in org.jooq.impl that implement Catalog Modifier and Type Class Description class
CatalogImpl
A common base class for database catalogsclass
LazyCatalog
A schema that references a lazy initialisableCatalog
singleton, for use in generated code.Methods in org.jooq.impl that return Catalog Modifier and Type Method Description static @NotNull Catalog
DSL. catalog(String name)
Create a qualified catalog, given its catalog name.static @NotNull Catalog
DSL. catalog(Name name)
Create a qualified catalog, given its catalog name.Catalog
AbstractRoutine. getCatalog()
Catalog
ArrayRecordImpl. getCatalog()
Catalog
LazySchema. getCatalog()
Catalog
PackageImpl. getCatalog()
Catalog
SchemaImpl. getCatalog()
Catalog
SequenceImpl. getCatalog()
Catalog
UDTImpl. getCatalog()
Methods in org.jooq.impl with parameters of type Catalog Modifier and Type Method Description AlterDatabaseStep
DefaultDSLContext. alterDatabase(Catalog database)
static AlterDatabaseStep
DSL. alterDatabase(Catalog database)
TheALTER DATABASE
statement.AlterDatabaseStep
DefaultDSLContext. alterDatabaseIfExists(Catalog database)
static AlterDatabaseStep
DSL. alterDatabaseIfExists(Catalog database)
TheALTER DATABASE IF EXISTS
statement.CreateDatabaseFinalStep
DefaultDSLContext. createDatabase(Catalog database)
static CreateDatabaseFinalStep
DSL. createDatabase(Catalog database)
TheCREATE DATABASE
statement.CreateDatabaseFinalStep
DefaultDSLContext. createDatabaseIfNotExists(Catalog database)
static CreateDatabaseFinalStep
DSL. createDatabaseIfNotExists(Catalog database)
TheCREATE DATABASE IF NOT EXISTS
statement.Queries
DefaultDSLContext. ddl(Catalog catalog)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLFlag... flags)
DropDatabaseFinalStep
DefaultDSLContext. dropDatabase(Catalog database)
static DropDatabaseFinalStep
DSL. dropDatabase(Catalog database)
TheDROP DATABASE
statement.DropDatabaseFinalStep
DefaultDSLContext. dropDatabaseIfExists(Catalog database)
static DropDatabaseFinalStep
DSL. dropDatabaseIfExists(Catalog database)
TheDROP DATABASE IF EXISTS
statement.InformationSchema
DefaultDSLContext. informationSchema(Catalog catalog)
InformationSchema
DefaultDSLContext. informationSchema(Catalog... catalogs)
Meta
DefaultDSLContext. meta(Catalog... catalogs)
RowCountQuery
DefaultDSLContext. setCatalog(Catalog catalog)
static @NotNull RowCountQuery
DSL. setCatalog(Catalog catalog)
Set the current catalog to a new value.Constructors in org.jooq.impl with parameters of type Catalog Constructor Description CatalogMetaProvider(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 Catalog Constructor Description CatalogMetaProvider(Configuration configuration, Collection<? extends Catalog> catalogs)
LazyCatalog(Name name, LazySupplier<Catalog> supplier)
-