Uses of Interface
org.jooq.Schema
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
This package contains classes related to the
SQLDialect.ORACLE
dialect family.-
Uses of Schema in org.jooq
Modifier and TypeMethodDescription@Nullable Schema
Link.$schema()
Experimental query object model accessor method, see alsoQOM
.@Nullable Schema
Qualified.$schema()
Experimental query object model accessor method, see alsoQOM
.ArrayOrAssociativeArrayRecord.getSchema()
Get the record type's schema.@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.default @Nullable Schema
EnumType.getSchema()
The schema of the enum type, if applicable (Postgres schema-scope enum type only).@Nullable Schema
Qualified.getSchema()
Get the object's schema.@Nullable Schema
Map a schema to another one.@Nullable Schema
Deprecated, for removal: This API element is subject to removal in a future version.Apply mapping to a given schemaLink.schema()
The owner schema.Modifier and TypeMethodDescriptionCatalog.getSchemas()
List all schemas contained in this catalog.Meta.getSchemas()
Get all schema objects from the underlying meta data source.Meta.getSchemas
(String name) Get all schema objects by name from the underlying meta data source.Meta.getSchemas
(Name name) Get all schema objects by name from the underlying meta data source.MigrationContext.migratedSchemas()
The set of schemas that are being migrated, as specified ininvalid @link
Settings#getMigration()
Catalog.schemaStream()
Stream all schemas contained in this catalog.Modifier and TypeMethodDescriptionvoid
Deprecated, for removal: This API element is subject to removal in a future version.Add schemata to this mappingvoid
Deprecated, for removal: This API element is subject to removal in a future version.Add schemata to this mappingvoid
Deprecated, for removal: This API element is subject to removal in a future version.Add schemata to this mapping@NotNull AlterSchemaStep
DSLContext.alterSchema
(Schema schema) TheALTER SCHEMA
statement.@NotNull AlterSchemaStep
DSLContext.alterSchemaIfExists
(Schema schema) TheALTER SCHEMA IF EXISTS
statement.@NotNull CreateSchemaFinalStep
DSLContext.createSchema
(Schema schema) TheCREATE SCHEMA
statement.@NotNull CreateSchemaFinalStep
DSLContext.createSchemaIfNotExists
(Schema schema) TheCREATE SCHEMA IF NOT EXISTS
statement.@NotNull Queries
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext.ddl
(Schema schema, DDLExportConfiguration configuration) Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull DropSchemaStep
DSLContext.dropSchema
(Schema schema) TheDROP SCHEMA
statement.@NotNull DropSchemaStep
DSLContext.dropSchemaIfExists
(Schema schema) TheDROP SCHEMA IF EXISTS
statement.@NotNull InformationSchema
DSLContext.informationSchema
(Schema schema) Convenience method forMeta.informationSchema()
.@NotNull InformationSchema
DSLContext.informationSchema
(Schema... schemas) Convenience method forMeta.informationSchema()
.@Nullable Schema
Map a schema to another one.@Nullable Schema
Deprecated, for removal: This API element is subject to removal in a future version.Apply mapping to a given schema@NotNull Meta
Access the database meta data from explicit schema information.@NotNull AlterSchemaFinalStep
Add theRENAME TO
clause to theALTER SCHEMA
statement.@NotNull AlterTypeFinalStep
Add theSET SCHEMA
clause to theALTER TYPE
statement.@NotNull RowCountQuery
TheSET SCHEMA
statement.void
Deprecated, for removal: This API element is subject to removal in a future version.Set a schema as the default schema.Modifier and TypeMethodDescription@NotNull Meta
Meta.filterSchemas
(Predicate<? super Schema> filter) Create a wrapperMeta
instance filtering out some schemas. -
Uses of Schema in org.jooq.impl
Modifier and TypeClassDescriptionfinal class
A schema that references a lazy initialisableSchema
singleton, for use in generated code.class
A common base class for database schemataModifier and TypeMethodDescription@NotNull Schema
QOM.AlterSchema.$renameTo()
final Schema
AbstractRoutine.$schema()
final Schema
PackageImpl.$schema()
@NotNull Schema
QOM.AlterSchema.$schema()
@NotNull Schema
QOM.CreateSchema.$schema()
@NotNull Schema
QOM.DropSchema.$schema()
@NotNull Schema
QOM.SetSchema.$schema()
final Schema
SequenceImpl.$schema()
final Schema
UDTImpl.$schema()
@Nullable Schema
QOM.AlterType.$setSchema()
final Schema
AbstractRoutine.getSchema()
final Schema
ArrayRecordImpl.getSchema()
final Schema
AssociativeArrayRecordImpl.getSchema()
final Schema
final Schema
final Schema
final Schema
final Schema
PackageImpl.getSchema()
final Schema
SequenceImpl.getSchema()
UDTImpl.getSchema()
static @NotNull Schema
Create a qualified schema, given its schema name.static @NotNull Schema
Create a qualified schema, given its schema name.Modifier and TypeMethodDescriptionCatalogImpl.getSchemas()
List all schemas contained in this catalog.LazyCatalog.getSchemas()
CatalogImpl.schemaStream()
LazyCatalog.schemaStream()
Modifier and TypeMethodDescription@NotNull QOM.AlterSchema
@NotNull QOM.AlterSchema
@NotNull QOM.CreateSchema
@NotNull QOM.DropSchema
@NotNull QOM.SetSchema
@NotNull QOM.AlterType
QOM.AlterType.$setSchema
(Schema setSchema) DefaultDSLContext.alterSchema
(Schema schema) static AlterSchemaStep
DSL.alterSchema
(Schema schema) TheALTER SCHEMA
statement.DefaultDSLContext.alterSchemaIfExists
(Schema schema) static AlterSchemaStep
DSL.alterSchemaIfExists
(Schema schema) TheALTER SCHEMA IF EXISTS
statement.static final <T,
U> @NotNull Domain<U> Internal.createDomain
(Schema schema, Name name, DataType<T> type, Binding<T, U> binding, Check<?>... checks) Factory method for domain specifications.static final <T> @NotNull Domain<T>
Internal.createDomain
(Schema schema, Name name, DataType<T> type, Check<?>... checks) Factory method for domain specifications.static final <T,
U> @NotNull Domain<U> Internal.createDomain
(Schema schema, Name name, DataType<T> type, Converter<T, U> converter, Check<?>... checks) Factory method for domain specifications.static final <T,
X, U> @NotNull Domain<U> Internal.createDomain
(Schema schema, Name name, DataType<T> type, Converter<X, U> converter, Binding<T, X> binding, Check<?>... checks) Factory method for domain specifications.Internal.createQueue
(String name, Schema schema, UDT<R> type) DefaultDSLContext.createSchema
(Schema schema) static CreateSchemaFinalStep
DSL.createSchema
(Schema schema) TheCREATE SCHEMA
statement.DefaultDSLContext.createSchemaIfNotExists
(Schema schema) static CreateSchemaFinalStep
DSL.createSchemaIfNotExists
(Schema schema) TheCREATE SCHEMA IF NOT EXISTS
statement.Internal.createSequence
(String name, Schema schema, DataType<T> type) Factory method for sequences.Internal.createSequence
(String name, Schema schema, DataType<T> type, Number startWith, Number incrementBy, Number minvalue, Number maxvalue, boolean cycle, Number cache) Factory method for sequences.DefaultDSLContext.ddl
(Schema schema, DDLExportConfiguration exportConfiguration) DefaultDSLContext.dropSchema
(Schema schema) static DropSchemaStep
DSL.dropSchema
(Schema schema) TheDROP SCHEMA
statement.DefaultDSLContext.dropSchemaIfExists
(Schema schema) static DropSchemaStep
DSL.dropSchemaIfExists
(Schema schema) TheDROP SCHEMA IF EXISTS
statement.DefaultDSLContext.informationSchema
(Schema schema) DefaultDSLContext.informationSchema
(Schema... schemas) static @NotNull Link
Create a database link reference.static RowCountQuery
TheSET SCHEMA
statement.ModifierConstructorDescriptionprotected
AbstractRoutine
(String name, Schema schema) protected
AbstractRoutine
(String name, Schema schema, DataType<T> type) protected
protected
protected
AbstractRoutine
(String name, Schema schema, DataType<X> type, Converter<Y, T> converter, Binding<X, Y> binding) protected
AbstractRoutine
(String name, Schema schema, Package pkg) protected
protected
protected
AbstractRoutine
(String name, Schema schema, Package pkg, DataType<X> type, Converter<X, T> converter) protected
AbstractRoutine
(String name, Schema schema, Package pkg, DataType<X> type, Converter<Y, T> converter, Binding<X, Y> binding) protected
ArrayRecordImpl
(Schema schema, String name, DataType<T> type) Create an empty array recordprotected
ArrayRecordImpl
(Schema schema, String name, DataType<X> type, Binding<X, Y> binding) Create an empty array recordprotected
Create an empty array recordprotected
ArrayRecordImpl
(Schema schema, String name, DataType<X> type, Converter<Y, T> converter, Binding<X, Y> binding) Create an empty array recordprotected
Create an empty array recordprotected
Create an empty array recordprotected
ArrayRecordImpl
(Schema schema, Package pkg, String name, DataType<X> type, Converter<X, T> converter) Create an empty array recordprotected
ArrayRecordImpl
(Schema schema, Package pkg, String name, DataType<X> type, Converter<Y, T> converter, Binding<X, Y> binding) Create an empty array recordprotected
Create an empty array recordprotected
AssociativeArrayRecordImpl
(Schema schema, String name, DataType<X> type, DataType<K> indexDataType, Binding<X, Y> binding) Create an empty array recordprotected
AssociativeArrayRecordImpl
(Schema schema, String name, DataType<X> type, DataType<K> indexDataType, Converter<X, V> converter) Create an empty array recordprotected
AssociativeArrayRecordImpl
(Schema schema, String name, DataType<X> type, DataType<K> indexDataType, Converter<Y, V> converter, Binding<X, Y> binding) Create an empty array recordprotected
AssociativeArrayRecordImpl
(Schema schema, Package pkg, String name, DataType<V> type, DataType<K> indexDataType) Create an empty array recordprotected
AssociativeArrayRecordImpl
(Schema schema, Package pkg, String name, DataType<X> type, DataType<K> indexDataType, Binding<X, Y> binding) Create an empty array recordprotected
AssociativeArrayRecordImpl
(Schema schema, Package pkg, String name, DataType<X> type, DataType<K> indexDataType, Converter<X, V> converter) Create an empty array recordprotected
AssociativeArrayRecordImpl
(Schema schema, Package pkg, String name, DataType<X> type, DataType<K> indexDataType, Converter<Y, V> converter, Binding<X, Y> binding) Create an empty array recordprotected
CustomTable
(String name, Schema schema) Deprecated.protected
CustomTable
(Name name, Schema schema) PackageImpl
(String name, Schema schema) SchemaMetaProvider
(Configuration configuration, Schema... schemas) SequenceImpl
(String name, Schema schema, DataType<T> type) Deprecated.Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema)
instead (or re-generated your code).Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table)
instead (or re-generated your code).Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table, Field[])
instead (or re-generated your code).Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table, Field[], String)
instead (or re-generated your code).TableImpl
(Name name, Schema schema, Table<?> child, ForeignKey<?, R> path, Table<R> aliased, Field<?>[] parameters, Comment comment) TableImpl
(Name name, Schema schema, Table<?> child, ForeignKey<?, R> path, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options) Deprecated.- 3.11 - [#7027] - UseTableImpl(Name, Schema, Table, Field[], Comment)
instead.TableImpl
(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options) ModifierConstructorDescriptionLazySchema
(Name name, Comment comment, LazySupplier<Schema> supplier) SchemaMetaProvider
(Configuration configuration, Collection<? extends Schema> schemas) -
Uses of Schema in org.jooq.util.oracle
CustomTable(Name, Schema)
instead.