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.Schema
Catalog. getSchema(String name)
Get a schema by its name (case-sensitive) in this catalog, ornull
if no such schema exists.default Schema
EnumType. getSchema()
The schema of the enum type, if applicable (Postgres schema-scope enum type only).Schema
Package. getSchema()
Get the package schemaSchema
Routine. getSchema()
Get the routine schemaSchema
Sequence. getSchema()
Get the sequence schema.Schema
Table. getSchema()
Get the table schema.Schema
UDT. getSchema()
Get the UDT schema.Schema
DSLContext. map(Schema schema)
Map a schema to another one.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 List<Schema>
Catalog. getSchemas()
List all schemas contained in this catalog.List<Schema>
Meta. getSchemas()
Get all schema objects from the underlying meta data source.List<Schema>
Meta. getSchemas(String name)
Get all schema objects by name from the underlying meta data source.List<Schema>
Meta. getSchemas(Name name)
Get all schema objects by name from the underlying meta data source.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 mappingAlterSchemaStep
DSLContext. alterSchema(Schema schema)
Create a new DSLALTER SCHEMA
statement.AlterSchemaStep
DSLContext. alterSchemaIfExists(Schema schema)
Create a new DSLALTER SCHEMA
statement.CreateSchemaFinalStep
DSLContext. createSchema(Schema schema)
Create a new DSLCREATE SCHEMA
statement.CreateSchemaFinalStep
DSLContext. createSchemaIfNotExists(Schema schema)
Create a new DSLCREATE SCHEMA
statement.Queries
DSLContext. ddl(Schema schema)
Convenience method forMeta.ddl()
.Queries
DSLContext. ddl(Schema schema, DDLExportConfiguration configuration)
Convenience method forMeta.ddl(DDLExportConfiguration)
.Queries
DSLContext. ddl(Schema schema, DDLFlag... flags)
Convenience method forMeta.ddl(DDLExportConfiguration)
.DropSchemaStep
DSLContext. dropSchema(Schema schema)
Create a new DSLDROP SCHEMA
statement.DropSchemaStep
DSLContext. dropSchemaIfExists(Schema schema)
Create a new DSLDROP SCHEMA
statement.InformationSchema
DSLContext. informationSchema(Schema schema)
Convenience method forMeta.informationSchema()
.InformationSchema
DSLContext. informationSchema(Schema... schemas)
Convenience method forMeta.informationSchema()
.Schema
DSLContext. map(Schema schema)
Map a schema to another one.Schema
SchemaMapping. map(Schema schema)
Deprecated.Apply mapping to a given schemaMeta
DSLContext. meta(Schema... schemas)
Access the database meta data from explicit schema information.AlterSchemaFinalStep
AlterSchemaStep. renameTo(Schema newName)
Add aRENAME TO
clause to theALTER SCHEMA
statement.AlterTypeFinalStep
AlterTypeStep. setSchema(Schema newSchema)
Add theALTER TYPE ..
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. -
Uses of Schema in org.jooq.impl
Classes in org.jooq.impl that implement Schema Modifier and Type Class Description 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
PackageImpl. getSchema()
Schema
SequenceImpl. getSchema()
Schema
UDTImpl. getSchema()
Schema
DefaultDSLContext. map(Schema schema)
static Schema
DSL. schema(Name name)
Create a qualified schema, given its schema name.static 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.Stream<Schema>
CatalogImpl. 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)
Create a new DSLALTER SCHEMA
statement.AlterSchemaStep
DefaultDSLContext. alterSchemaIfExists(Schema schema)
static AlterSchemaStep
DSL. alterSchemaIfExists(Schema schema)
Create a new DSLALTER SCHEMA
statement.static <R extends UDTRecord<R>>
Queue<R>Internal. createQueue(String name, Schema schema, UDT<R> type)
CreateSchemaFinalStep
DefaultDSLContext. createSchema(Schema schema)
static CreateSchemaFinalStep
DSL. createSchema(Schema schema)
Create a new DSLCREATE SCHEMA
statement.CreateSchemaFinalStep
DefaultDSLContext. createSchemaIfNotExists(Schema schema)
static CreateSchemaFinalStep
DSL. createSchemaIfNotExists(Schema schema)
Create a new DSLCREATE SCHEMA
statement.static <T extends Number>
Sequence<T>Internal. createSequence(String name, Schema schema, DataType<T> type)
Factory method for sequences.static <T extends Number>
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)
Create a new DSLDROP SCHEMA
statement.DropSchemaStep
DefaultDSLContext. dropSchemaIfExists(Schema schema)
static DropSchemaStep
DSL. dropSchemaIfExists(Schema schema)
Create a new DSLDROP SCHEMA
statement.InformationSchema
DefaultDSLContext. informationSchema(Schema schema)
InformationSchema
DefaultDSLContext. informationSchema(Schema... schemas)
static 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 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)
-
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)
-