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.ORACLEdialect family. -
-
Uses of Schema in org.jooq
Methods in org.jooq that return Schema Modifier and Type Method Description SchemaArrayRecord. getSchema()Get the record type's schema.@Nullable SchemaCatalog. getSchema(String name)Get a schema by its name (case-sensitive) in this catalog, ornullif no such schema exists.@Nullable SchemaCatalog. getSchema(Name name)Get a schema by its qualified or unqualified name in this catalog, ornullif no such schema exists.default @Nullable SchemaEnumType. getSchema()The schema of the enum type, if applicable (Postgres schema-scope enum type only).@Nullable SchemaQualified. getSchema()Get the object's schema.@Nullable SchemaDSLContext. map(Schema schema)Map a schema to another one.@Nullable SchemaSchemaMapping. map(Schema schema)Deprecated.Apply mapping to a given schemaSchemaLink. 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 voidSchemaMapping. add(String inputSchema, Schema outputSchema)Deprecated.Add schemata to this mappingvoidSchemaMapping. add(Schema inputSchema, String outputSchema)Deprecated.Add schemata to this mappingvoidSchemaMapping. add(Schema inputSchema, Schema outputSchema)Deprecated.Add schemata to this mapping@NotNull AlterSchemaStepDSLContext. alterSchema(Schema schema)TheALTER SCHEMAstatement.@NotNull AlterSchemaStepDSLContext. alterSchemaIfExists(Schema schema)TheALTER SCHEMA IF EXISTSstatement.@NotNull CreateSchemaFinalStepDSLContext. createSchema(Schema schema)TheCREATE SCHEMAstatement.@NotNull CreateSchemaFinalStepDSLContext. createSchemaIfNotExists(Schema schema)TheCREATE SCHEMA IF NOT EXISTSstatement.@NotNull QueriesDSLContext. ddl(Schema schema)Convenience method forMeta.ddl().@NotNull QueriesDSLContext. ddl(Schema schema, DDLExportConfiguration configuration)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull QueriesDSLContext. ddl(Schema schema, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).@NotNull DropSchemaStepDSLContext. dropSchema(Schema schema)TheDROP SCHEMAstatement.@NotNull DropSchemaStepDSLContext. dropSchemaIfExists(Schema schema)TheDROP SCHEMA IF EXISTSstatement.@NotNull InformationSchemaDSLContext. informationSchema(Schema schema)Convenience method forMeta.informationSchema().@NotNull InformationSchemaDSLContext. informationSchema(Schema... schemas)Convenience method forMeta.informationSchema().@Nullable SchemaDSLContext. map(Schema schema)Map a schema to another one.@Nullable SchemaSchemaMapping. map(Schema schema)Deprecated.Apply mapping to a given schema@NotNull MetaDSLContext. meta(Schema... schemas)Access the database meta data from explicit schema information.@NotNull AlterSchemaFinalStepAlterSchemaStep. renameTo(Schema renameTo)Add theRENAME TOclause to theALTER SCHEMAstatement.@NotNull AlterTypeFinalStepAlterTypeStep. setSchema(Schema newSchema)Add theALTER TYPE ..@NotNull RowCountQueryDSLContext. setSchema(Schema schema)Set the current schema to a new value.voidSchemaMapping. 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 MetaMeta. filterSchemas(Meta.Predicate<? super Schema> filter)Create a wrapperMetainstance filtering out some schemas. -
Uses of Schema in org.jooq.impl
Classes in org.jooq.impl that implement Schema Modifier and Type Class Description classLazySchemaA schema that references a lazy initialisableSchemasingleton, for use in generated code.classSchemaImplA common base class for database schemataMethods in org.jooq.impl that return Schema Modifier and Type Method Description SchemaAbstractRoutine. getSchema()SchemaArrayRecordImpl. getSchema()SchemaCatalogImpl. getSchema(String schemaName)SchemaCatalogImpl. getSchema(Name name)SchemaLazyCatalog. getSchema(String name)SchemaLazyCatalog. getSchema(Name name)SchemaPackageImpl. getSchema()SchemaSequenceImpl. getSchema()SchemaUDTImpl. getSchema()SchemaDefaultDSLContext. map(Schema schema)static @NotNull SchemaDSL. schema(String name)Create a qualified schema, given its schema name.static @NotNull SchemaDSL. schema(Name name)Create a qualified schema, given its schema name.static @NotNull SchemaDSL. 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 AlterSchemaStepDefaultDSLContext. alterSchema(Schema schema)static AlterSchemaStepDSL. alterSchema(Schema schema)TheALTER SCHEMAstatement.AlterSchemaStepDefaultDSLContext. alterSchemaIfExists(Schema schema)static AlterSchemaStepDSL. alterSchemaIfExists(Schema schema)TheALTER SCHEMA IF EXISTSstatement.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)CreateSchemaFinalStepDefaultDSLContext. createSchema(Schema schema)static CreateSchemaFinalStepDSL. createSchema(Schema schema)TheCREATE SCHEMAstatement.CreateSchemaFinalStepDefaultDSLContext. createSchemaIfNotExists(Schema schema)static CreateSchemaFinalStepDSL. createSchemaIfNotExists(Schema schema)TheCREATE SCHEMA IF NOT EXISTSstatement.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.QueriesDefaultDSLContext. ddl(Schema schema)QueriesDefaultDSLContext. ddl(Schema schema, DDLExportConfiguration exportConfiguration)QueriesDefaultDSLContext. ddl(Schema schema, DDLFlag... flags)DropSchemaStepDefaultDSLContext. dropSchema(Schema schema)static DropSchemaStepDSL. dropSchema(Schema schema)TheDROP SCHEMAstatement.DropSchemaStepDefaultDSLContext. dropSchemaIfExists(Schema schema)static DropSchemaStepDSL. dropSchemaIfExists(Schema schema)TheDROP SCHEMA IF EXISTSstatement.InformationSchemaDefaultDSLContext. informationSchema(Schema schema)InformationSchemaDefaultDSLContext. informationSchema(Schema... schemas)static @NotNull LinkDSL. link(String name, Schema schema)Create a database link reference.SchemaDefaultDSLContext. map(Schema schema)MetaDefaultDSLContext. meta(Schema... schemas)RowCountQueryDefaultDSLContext. setSchema(Schema schema)static @NotNull RowCountQueryDSL. 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 SchemaQueue. schema()The queue schema.SchemaQueueImpl. schema()Constructors in org.jooq.util.oracle with parameters of type Schema Constructor Description QueueImpl(String name, Schema schema, UDT<R> type)
-