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 CatalogArrayRecord. 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 CatalogSchemaMapping. 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 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 QueriesDSLContext. ddl(Catalog catalog)Convenience method forMeta.ddl().@NotNull QueriesDSLContext. ddl(Catalog schema, DDLExportConfiguration configuration)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Catalog schema, DDLFlag... flags)Convenience 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 CatalogSchemaMapping. map(Catalog catalog)Deprecated.@NotNull MetaDSLContext. meta(Catalog... catalogs)Access the database meta data from explicit catalog information.@NotNull AlterDatabaseFinalStepAlterDatabaseStep. renameTo(Catalog renameTo)Add theRENAME TOclause to theALTER DATABASEstatement.@NotNull RowCountQueryDSLContext. 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 MetaMeta. filterCatalogs(Meta.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 Catalog Modifier and Type Class Description classCatalogImplA common base class for database catalogsclassLazyCatalogA schema that references a lazy initialisableCatalogsingleton, for use in generated code.Methods in org.jooq.impl that return Catalog Modifier and Type Method Description static @NotNull CatalogDSL. catalog(String name)Create a qualified catalog, given its catalog name.static @NotNull CatalogDSL. catalog(Name name)Create a qualified catalog, given its catalog name.CatalogAbstractRoutine. getCatalog()CatalogArrayRecordImpl. getCatalog()CatalogLazySchema. getCatalog()CatalogPackageImpl. getCatalog()CatalogSchemaImpl. getCatalog()CatalogSequenceImpl. getCatalog()CatalogUDTImpl. getCatalog()Methods in org.jooq.impl with parameters of type Catalog Modifier and Type Method Description AlterDatabaseStepDefaultDSLContext. alterDatabase(Catalog database)static AlterDatabaseStepDSL. alterDatabase(Catalog database)TheALTER DATABASEstatement.AlterDatabaseStepDefaultDSLContext. alterDatabaseIfExists(Catalog database)static AlterDatabaseStepDSL. alterDatabaseIfExists(Catalog database)TheALTER DATABASE IF EXISTSstatement.CreateDatabaseFinalStepDefaultDSLContext. createDatabase(Catalog database)static CreateDatabaseFinalStepDSL. createDatabase(Catalog database)TheCREATE DATABASEstatement.CreateDatabaseFinalStepDefaultDSLContext. createDatabaseIfNotExists(Catalog database)static CreateDatabaseFinalStepDSL. createDatabaseIfNotExists(Catalog database)TheCREATE DATABASE IF NOT EXISTSstatement.QueriesDefaultDSLContext. ddl(Catalog catalog)QueriesDefaultDSLContext. ddl(Catalog catalog, DDLExportConfiguration exportConfiguration)QueriesDefaultDSLContext. ddl(Catalog catalog, DDLFlag... flags)DropDatabaseFinalStepDefaultDSLContext. dropDatabase(Catalog database)static DropDatabaseFinalStepDSL. dropDatabase(Catalog database)TheDROP DATABASEstatement.DropDatabaseFinalStepDefaultDSLContext. dropDatabaseIfExists(Catalog database)static DropDatabaseFinalStepDSL. dropDatabaseIfExists(Catalog database)TheDROP DATABASE IF EXISTSstatement.InformationSchemaDefaultDSLContext. informationSchema(Catalog catalog)InformationSchemaDefaultDSLContext. informationSchema(Catalog... catalogs)MetaDefaultDSLContext. meta(Catalog... catalogs)RowCountQueryDefaultDSLContext. setCatalog(Catalog catalog)static @NotNull RowCountQueryDSL. 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)
-