- All Superinterfaces:
Named
,QueryPart
,Serializable
- All Known Implementing Classes:
CatalogImpl
,LazyCatalog
Standard SQL object identifiers come in 3 parts:
[catalog].[schema].[object]
. The catalog is an object that
groups a set of Schema
instances, which again group a set of objects,
where objects can be Table
, Sequence
, Routine
and
many other types of objects.
If your RDBMS supports catalogs, and jOOQ supports using catalogs with your RDBMS, then generated catalog references can be used to fully qualify objects
Example:
// Assuming import static org.jooq.impl.DSL.*;
using(configuration)
.select(CATALOG.SCHEMA.ACTOR.FIRST_NAME, CATALOG.SCHEMA.ACTOR.LAST_NAME)
.from(CATALOG.SCHEMA.ACTOR)
.fetch();
Compatibility:
jOOQ supports catalogs in SQLDialect.SQLSERVER
and related dialects,
such as SQLDialect.SQLDATAWAREHOUSE
. Database products like
SQLDialect.MYSQL
and related dialects, such as
SQLDialect.MARIADB
use catalogs ("databases") instead of schemas, and
lack schema support. For historic reasons, jOOQ treats MySQL catalogs as
schemas and does not support any catalog qualifier in MySQL.
Instances can be created using DSL.catalog(Name)
and overloads.
- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription@Nullable Schema
Get a schema by its name (case-sensitive) in this catalog, ornull
if no such schema exists.@Nullable Schema
Get a schema by its qualified or unqualified name in this catalog, ornull
if no such schema exists.List all schemas contained in this catalog.Stream all schemas contained in this catalog.Methods inherited from interface org.jooq.Named
$name, getComment, getCommentPart, getName, getQualifiedName, getUnqualifiedName
-
Method Details
-
getSchemas
List all schemas contained in this catalog. -
getSchema
Get a schema by its name (case-sensitive) in this catalog, ornull
if no such schema exists. -
getSchema
Get a schema by its qualified or unqualified name in this catalog, ornull
if no such schema exists. -
schemaStream
Stream all schemas contained in this catalog.
-