Uses of Interface
org.jooq.Catalog
-
Packages that use Catalog Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
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 Catalog
EnumType. getCatalog()
The catalog of the enum type, if applicable.Catalog
Meta. getCatalog(String name)
Get a catalog object by name from the underlying meta data source, ornull
if no such object exists.Catalog
Meta. getCatalog(Name name)
Get a catalog object by name from the underlying meta data source, ornull
if no such object exists.Catalog
Package. getCatalog()
Get the package catalog.Catalog
Routine. getCatalog()
Get the routine catalog.Catalog
Schema. getCatalog()
The catalog of this schema.Catalog
Sequence. getCatalog()
Get the sequence catalog.Catalog
Table. getCatalog()
Get the table catalog.Catalog
UDT. getCatalog()
Get the UDT catalog.Catalog
SchemaMapping. map(Catalog catalog)
Deprecated.Methods in org.jooq that return types with arguments of type Catalog Modifier and Type Method Description 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 Queries
DSLContext. ddl(Catalog catalog)
Generate the complete creation script for the entire catalog.Queries
DSLContext. ddl(Catalog schema, DDLExportConfiguration configuration)
Generate a partial creation script for the entire catalog.Queries
DSLContext. ddl(Catalog schema, DDLFlag... flags)
Generate a partial creation script for the entire catalog.InformationSchema
DSLContext. informationSchema(Catalog catalog)
Export a catalog to theInformationSchema
format.InformationSchema
DSLContext. informationSchema(Catalog... catalogs)
Export a set of catalogs to theInformationSchema
format.Catalog
SchemaMapping. map(Catalog catalog)
Deprecated.Meta
DSLContext. meta(Catalog... catalogs)
Access the database meta data from explicit catalog information.RowCountQuery
DSLContext. setCatalog(Catalog catalog)
Set the current catalog to a new value. -
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 catalogsMethods in org.jooq.impl that return Catalog Modifier and Type Method Description static Catalog
DSL. catalog(Name name)
Create a qualified catalog, given its catalog name.Catalog
AbstractRoutine. getCatalog()
Catalog
ArrayRecordImpl. 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 Queries
DefaultDSLContext. ddl(Catalog catalog)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Catalog catalog, DDLFlag... flags)
InformationSchema
DefaultDSLContext. informationSchema(Catalog catalog)
InformationSchema
DefaultDSLContext. informationSchema(Catalog... catalogs)
Meta
DefaultDSLContext. meta(Catalog... catalogs)
RowCountQuery
DefaultDSLContext. setCatalog(Catalog catalog)
static 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)
-