Uses of Interface
org.jooq.Schema
-
Packages that use Schema Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API.org.jooq.impl Theorg.jooq.implpackage contains jOOQ's implementation classes.org.jooq.util.oracle Theorg.jooq.util.asepackage contains classes related to theSQLDialect.ORACLEdialect. -
-
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.SchemaCatalog. getSchema(String name)Get a schema by its name (case-sensitive) in this catalog, ornullif no such schema exists.default SchemaEnumType. getSchema()The schema of the enum type, if applicable (Postgres schema-scope enum type only).SchemaPackage. getSchema()Get the package schemaSchemaRoutine. getSchema()Get the routine schemaSchemaSequence. getSchema()Get the sequence schema.SchemaTable. getSchema()Get the table schema.SchemaUDT. getSchema()Get the UDT schema.SchemaDSLContext. map(Schema schema)Map a schema to another one.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 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 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 mappingAlterSchemaStepDSLContext. alterSchema(Schema schema)Create a new DSLALTER SCHEMAstatement.AlterSchemaStepDSLContext. alterSchemaIfExists(Schema schema)Create a new DSLALTER SCHEMAstatement.CreateSchemaFinalStepDSLContext. createSchema(Schema schema)Create a new DSLCREATE SCHEMAstatement.CreateSchemaFinalStepDSLContext. createSchemaIfNotExists(Schema schema)Create a new DSLCREATE SCHEMAstatement.QueriesDSLContext. ddl(Schema schema)Convenience method forMeta.ddl().QueriesDSLContext. ddl(Schema schema, DDLExportConfiguration configuration)Convenience method forMeta.ddl(DDLExportConfiguration).QueriesDSLContext. ddl(Schema schema, DDLFlag... flags)Convenience method forMeta.ddl(DDLExportConfiguration).DropSchemaStepDSLContext. dropSchema(Schema schema)Create a new DSLDROP SCHEMAstatement.DropSchemaStepDSLContext. dropSchemaIfExists(Schema schema)Create a new DSLDROP SCHEMAstatement.InformationSchemaDSLContext. informationSchema(Schema schema)Convenience method forMeta.informationSchema().InformationSchemaDSLContext. informationSchema(Schema... schemas)Convenience method forMeta.informationSchema().SchemaDSLContext. map(Schema schema)Map a schema to another one.SchemaSchemaMapping. map(Schema schema)Deprecated.Apply mapping to a given schemaMetaDSLContext. meta(Schema... schemas)Access the database meta data from explicit schema information.AlterSchemaFinalStepAlterSchemaStep. renameTo(Schema newName)Add aRENAME TOclause to theALTER SCHEMAstatement.AlterTypeFinalStepAlterTypeStep. setSchema(Schema newSchema)Add theALTER TYPE ..RowCountQueryDSLContext. setSchema(Schema schema)Set the current schema to a new value.voidSchemaMapping. 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 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)SchemaPackageImpl. getSchema()SchemaSequenceImpl. getSchema()SchemaUDTImpl. getSchema()SchemaDefaultDSLContext. map(Schema schema)static SchemaDSL. schema(Name name)Create a qualified schema, given its schema name.static 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.Stream<Schema>CatalogImpl. 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)Create a new DSLALTER SCHEMAstatement.AlterSchemaStepDefaultDSLContext. alterSchemaIfExists(Schema schema)static AlterSchemaStepDSL. alterSchemaIfExists(Schema schema)Create a new DSLALTER SCHEMAstatement.static <R extends UDTRecord<R>>
Queue<R>Internal. createQueue(String name, Schema schema, UDT<R> type)CreateSchemaFinalStepDefaultDSLContext. createSchema(Schema schema)static CreateSchemaFinalStepDSL. createSchema(Schema schema)Create a new DSLCREATE SCHEMAstatement.CreateSchemaFinalStepDefaultDSLContext. createSchemaIfNotExists(Schema schema)static CreateSchemaFinalStepDSL. createSchemaIfNotExists(Schema schema)Create a new DSLCREATE SCHEMAstatement.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.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)Create a new DSLDROP SCHEMAstatement.DropSchemaStepDefaultDSLContext. dropSchemaIfExists(Schema schema)static DropSchemaStepDSL. dropSchemaIfExists(Schema schema)Create a new DSLDROP SCHEMAstatement.InformationSchemaDefaultDSLContext. informationSchema(Schema schema)InformationSchemaDefaultDSLContext. informationSchema(Schema... schemas)static LinkDSL. link(String name, Schema schema)Create a database link reference.SchemaDefaultDSLContext. map(Schema schema)MetaDefaultDSLContext. meta(Schema... schemas)RowCountQueryDefaultDSLContext. setSchema(Schema schema)static 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) -
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)
-