Uses of Interface
org.jooq.Schema
-
Packages that use Schema Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes.org.jooq.util.oracle This package contains classes related to theSQLDialect.ORACLE
dialect family. -
-
Uses of Schema in org.jooq
Methods in org.jooq that return Schema Modifier and Type Method Description Schema
ArrayRecord. getSchema()
Get the record type's schema.@Nullable Schema
Catalog. getSchema(String name)
Get a schema by its name (case-sensitive) in this catalog, ornull
if no such schema exists.@Nullable Schema
Catalog. getSchema(Name name)
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
DSLContext. map(Schema schema)
Map a schema to another one.@Nullable Schema
SchemaMapping. map(Schema schema)
Deprecated.Apply mapping to a given schemaSchema
Link. schema()
The owner schema.Methods in org.jooq that return types with arguments of type Schema Modifier and Type Method Description @NotNull List<Schema>
Catalog. getSchemas()
List all schemas contained in this catalog.@NotNull List<Schema>
Meta. getSchemas()
Get all schema objects from the underlying meta data source.@NotNull List<Schema>
Meta. getSchemas(String name)
Get all schema objects by name from the underlying meta data source.@NotNull List<Schema>
Meta. getSchemas(Name name)
Get all schema objects by name from the underlying meta data source.@NotNull Stream<Schema>
Catalog. schemaStream()
Stream all schemas contained in this catalog.Methods in org.jooq with parameters of type Schema Modifier and Type Method Description void
SchemaMapping. add(String inputSchema, Schema outputSchema)
Deprecated.Add schemata to this mappingvoid
SchemaMapping. add(Schema inputSchema, String outputSchema)
Deprecated.Add schemata to this mappingvoid
SchemaMapping. add(Schema inputSchema, Schema outputSchema)
Deprecated.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
DSLContext. ddl(Schema schema)
Convenience method forMeta.ddl()
.@NotNull Queries
DSLContext. ddl(Schema schema, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.@NotNull Queries
DSLContext. ddl(Schema schema, DDLFlag... flags)
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
DSLContext. map(Schema schema)
Map a schema to another one.@Nullable Schema
SchemaMapping. map(Schema schema)
Deprecated.Apply mapping to a given schema@NotNull Meta
DSLContext. meta(Schema... schemas)
Access the database meta data from explicit schema information.@NotNull AlterSchemaFinalStep
AlterSchemaStep. renameTo(Schema renameTo)
Add theRENAME TO
clause to theALTER SCHEMA
statement.@NotNull AlterTypeFinalStep
AlterTypeStep. setSchema(Schema newSchema)
Add theALTER TYPE ..
@NotNull RowCountQuery
DSLContext. setSchema(Schema schema)
Set the current schema to a new value.void
SchemaMapping. use(Schema schema)
Deprecated.Set a schema as the default schema.Method parameters in org.jooq with type arguments of type Schema Modifier and Type Method Description @NotNull Meta
Meta. filterSchemas(Meta.Predicate<? super Schema> filter)
Create a wrapperMeta
instance filtering out some schemas. -
Uses of Schema in org.jooq.impl
Classes in org.jooq.impl that implement Schema Modifier and Type Class Description class
LazySchema
A schema that references a lazy initialisableSchema
singleton, for use in generated code.class
SchemaImpl
A common base class for database schemataMethods in org.jooq.impl that return Schema Modifier and Type Method Description Schema
AbstractRoutine. getSchema()
Schema
ArrayRecordImpl. getSchema()
Schema
CatalogImpl. getSchema(String schemaName)
Schema
CatalogImpl. getSchema(Name name)
Schema
LazyCatalog. getSchema(String name)
Schema
LazyCatalog. getSchema(Name name)
Schema
PackageImpl. getSchema()
Schema
SequenceImpl. getSchema()
Schema
UDTImpl. getSchema()
Schema
DefaultDSLContext. map(Schema schema)
static @NotNull Schema
DSL. schema(String name)
Create a qualified schema, given its schema name.static @NotNull Schema
DSL. schema(Name name)
Create a qualified schema, given its schema name.static @NotNull Schema
DSL. schemaByName(String name)
Deprecated.- [#3843] - 3.6.0 - useDSL.schema(Name)
insteadMethods in org.jooq.impl that return types with arguments of type Schema Modifier and Type Method Description List<Schema>
CatalogImpl. getSchemas()
List all schemas contained in this catalog.List<Schema>
LazyCatalog. getSchemas()
Stream<Schema>
CatalogImpl. schemaStream()
Stream<Schema>
LazyCatalog. schemaStream()
Methods in org.jooq.impl with parameters of type Schema Modifier and Type Method Description AlterSchemaStep
DefaultDSLContext. alterSchema(Schema schema)
static AlterSchemaStep
DSL. alterSchema(Schema schema)
TheALTER SCHEMA
statement.AlterSchemaStep
DefaultDSLContext. alterSchemaIfExists(Schema schema)
static AlterSchemaStep
DSL. alterSchemaIfExists(Schema schema)
TheALTER SCHEMA IF EXISTS
statement.static <T> @NotNull Domain<T>
Internal. createDomain(Schema schema, Name name, DataType<T> type, Check<?>... checks)
Factory method for domain specifications.static <R extends UDTRecord<R>>
@NotNull Queue<R>Internal. createQueue(String name, Schema schema, UDT<R> type)
CreateSchemaFinalStep
DefaultDSLContext. createSchema(Schema schema)
static CreateSchemaFinalStep
DSL. createSchema(Schema schema)
TheCREATE SCHEMA
statement.CreateSchemaFinalStep
DefaultDSLContext. createSchemaIfNotExists(Schema schema)
static CreateSchemaFinalStep
DSL. createSchemaIfNotExists(Schema schema)
TheCREATE SCHEMA IF NOT EXISTS
statement.static <T extends Number>
@NotNull Sequence<T>Internal. createSequence(String name, Schema schema, DataType<T> type)
Factory method for sequences.static <T extends Number>
@NotNull Sequence<T>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.Queries
DefaultDSLContext. ddl(Schema schema)
Queries
DefaultDSLContext. ddl(Schema schema, DDLExportConfiguration exportConfiguration)
Queries
DefaultDSLContext. ddl(Schema schema, DDLFlag... flags)
DropSchemaStep
DefaultDSLContext. dropSchema(Schema schema)
static DropSchemaStep
DSL. dropSchema(Schema schema)
TheDROP SCHEMA
statement.DropSchemaStep
DefaultDSLContext. dropSchemaIfExists(Schema schema)
static DropSchemaStep
DSL. dropSchemaIfExists(Schema schema)
TheDROP SCHEMA IF EXISTS
statement.InformationSchema
DefaultDSLContext. informationSchema(Schema schema)
InformationSchema
DefaultDSLContext. informationSchema(Schema... schemas)
static @NotNull Link
DSL. link(String name, Schema schema)
Create a database link reference.Schema
DefaultDSLContext. map(Schema schema)
Meta
DefaultDSLContext. meta(Schema... schemas)
RowCountQuery
DefaultDSLContext. setSchema(Schema schema)
static @NotNull RowCountQuery
DSL. setSchema(Schema schema)
Set the current schema to a new value.Constructors in org.jooq.impl with parameters of type Schema Constructor Description AbstractRoutine(String name, Schema schema)
AbstractRoutine(String name, Schema schema, DataType<T> type)
AbstractRoutine(String name, Schema schema, DataType<X> type, Binding<X,T> binding)
AbstractRoutine(String name, Schema schema, DataType<X> type, Converter<X,T> converter)
AbstractRoutine(String name, Schema schema, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
AbstractRoutine(String name, Schema schema, Package pkg)
AbstractRoutine(String name, Schema schema, Package pkg, DataType<T> type)
AbstractRoutine(String name, Schema schema, Package pkg, DataType<X> type, Binding<X,T> binding)
AbstractRoutine(String name, Schema schema, Package pkg, DataType<X> type, Converter<X,T> converter)
AbstractRoutine(String name, Schema schema, Package pkg, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
ArrayRecordImpl(Schema schema, String name, DataType<T> type)
Create an empty array recordArrayRecordImpl(Schema schema, String name, DataType<T> type, Configuration configuration)
Deprecated.- 3.4.0 - [#3126] - Use theArrayRecordImpl(Schema, String, DataType)
constructor insteadArrayRecordImpl(Schema schema, String name, DataType<X> type, Binding<X,Y> binding)
Create an empty array recordArrayRecordImpl(Schema schema, String name, DataType<X> type, Configuration configuration, Binding<X,Y> binding)
Deprecated.- 3.4.0 - [#3126] - Use theArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead.ArrayRecordImpl(Schema schema, String name, DataType<X> type, Configuration configuration, Converter<X,T> converter)
Deprecated.- 3.4.0 - [#3126] - Use theArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead.ArrayRecordImpl(Schema schema, String name, DataType<X> type, Configuration configuration, Converter<Y,T> converter, Binding<X,Y> binding)
Deprecated.- 3.4.0 - [#3126] - Use theArrayRecordImpl(Schema, String, DataType, Converter)
constructor instead.ArrayRecordImpl(Schema schema, String name, DataType<X> type, Converter<X,T> converter)
Create an empty array recordArrayRecordImpl(Schema schema, String name, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
Create an empty array recordArrayRecordImpl(Schema schema, Package pkg, String name, DataType<T> type)
Create an empty array recordArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, Binding<X,Y> binding)
Create an empty array recordArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, Converter<X,T> converter)
Create an empty array recordArrayRecordImpl(Schema schema, Package pkg, String name, DataType<X> type, Converter<Y,T> converter, Binding<X,Y> binding)
Create an empty array recordCustomTable(String name, Schema schema)
Deprecated.- 3.10 - [#5996] - UseCustomTable(Name, Schema)
instead.CustomTable(Name name, Schema schema)
PackageImpl(String name, Schema schema)
SchemaMetaProvider(Configuration configuration, Schema... schemas)
SequenceImpl(String name, Schema schema, DataType<T> type)
Deprecated.TableImpl(String name, Schema schema)
Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema)
instead (or re-generated your code).TableImpl(String name, Schema schema, Table<R> aliased)
Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table)
instead (or re-generated your code).TableImpl(String name, Schema schema, Table<R> aliased, Field<?>[] parameters)
Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table, Field[])
instead (or re-generated your code).TableImpl(String name, Schema schema, Table<R> aliased, Field<?>[] parameters, String comment)
Deprecated.- 3.10 - [#5996] - UseTableImpl(Name, Schema, Table, Field[], String)
instead (or re-generated your code).TableImpl(Name name, Schema schema)
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)
TableImpl(Name name, Schema schema, Table<R> aliased)
TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters)
TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, String comment)
Deprecated.- 3.11 - [#7027] - UseTableImpl(Name, Schema, Table, Field[], Comment)
instead.TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment)
TableImpl(Name name, Schema schema, Table<R> aliased, Field<?>[] parameters, Comment comment, TableOptions options)
UDTImpl(String name, Schema schema)
UDTImpl(String name, Schema schema, Package pkg)
UDTImpl(String name, Schema schema, Package pkg, boolean synthetic)
Constructor parameters in org.jooq.impl with type arguments of type Schema Constructor Description LazySchema(Name name, Comment comment, LazySupplier<Schema> supplier)
SchemaMetaProvider(Configuration configuration, Collection<? extends Schema> schemas)
-
Uses of Schema in org.jooq.util.oracle
Methods in org.jooq.util.oracle that return Schema Modifier and Type Method Description Schema
Queue. schema()
The queue schema.Schema
QueueImpl. schema()
Constructors in org.jooq.util.oracle with parameters of type Schema Constructor Description QueueImpl(String name, Schema schema, UDT<R> type)
-