Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
Schema |
UDT.getSchema()
Get the UDT schema
|
Schema |
Table.getSchema()
Get the table schema.
|
Schema |
Sequence.getSchema()
Get the sequence schema
|
Schema |
Routine.getSchema()
Get the routine schema
|
Schema |
Package.getSchema()
Get the package schema
|
Schema |
EnumType.getSchema()
The schema of the enum type, if applicable (Postgres schema-scope enum
type only).
|
Schema |
Catalog.getSchema(String name)
Get a schema by its name (case-sensitive) in this catalog, or
null if no such schema exists |
Schema |
SchemaMapping.map(Schema schema)
Deprecated.
Apply mapping to a given schema
|
Schema |
DSLContext.map(Schema schema)
Map a schema to another one.
|
Modifier and Type | Method and Description |
---|---|
List<Schema> |
Meta.getSchemas()
Get all schema objects from the underlying
DatabaseMetaData . |
List<Schema> |
Catalog.getSchemas()
List all schemas contained in this catalog
|
Modifier and Type | Method and Description |
---|---|
void |
SchemaMapping.add(Schema inputSchema,
Schema outputSchema)
Deprecated.
Add schemata to this mapping
|
void |
SchemaMapping.add(Schema inputSchema,
String outputSchema)
Deprecated.
Add schemata to this mapping
|
void |
SchemaMapping.add(String inputSchema,
Schema outputSchema)
Deprecated.
Add schemata to this mapping
|
Schema |
SchemaMapping.map(Schema schema)
Deprecated.
Apply mapping to a given schema
|
Schema |
DSLContext.map(Schema schema)
Map a schema to another one.
|
void |
SchemaMapping.use(Schema schema)
Deprecated.
Set a schema as the default schema.
|
Modifier and Type | Class and Description |
---|---|
class |
SchemaImpl
A common base class for database schemata
This type is for JOOQ INTERNAL USE only.
|
Modifier and Type | Method and Description |
---|---|
Schema |
UDTImpl.getSchema() |
Schema |
SequenceImpl.getSchema() |
Schema |
PackageImpl.getSchema() |
Schema |
AbstractRoutine.getSchema() |
Schema |
CatalogImpl.getSchema(String name) |
Schema |
DefaultDSLContext.map(Schema schema) |
static Schema |
DSL.schemaByName(String name)
Create a qualified schema, given its schema name.
|
Modifier and Type | Method and Description |
---|---|
List<Schema> |
CatalogImpl.getSchemas()
List all schemas contained in this catalog
|
Modifier and Type | Method and Description |
---|---|
Schema |
DefaultDSLContext.map(Schema schema) |
Constructor and Description |
---|
AbstractRoutine(String name,
Schema schema) |
AbstractRoutine(String name,
Schema schema,
DataType<T> type) |
AbstractRoutine(String name,
Schema schema,
Package pkg) |
AbstractRoutine(String name,
Schema schema,
Package pkg,
DataType<T> type) |
ArrayRecordImpl(Schema schema,
String name,
DataType<T> type)
Create an empty array record
|
ArrayRecordImpl(Schema schema,
String name,
DataType<T> type,
Configuration configuration)
Create an empty array record
|
CustomTable(String name,
Schema schema) |
PackageImpl(String name,
Schema schema) |
SequenceImpl(String name,
Schema schema,
DataType<T> type) |
TableImpl(String name,
Schema schema) |
TableImpl(String name,
Schema schema,
Table<R> aliased) |
TableImpl(String name,
Schema schema,
Table<R> aliased,
Field<?>[] parameters) |
TableImpl(String name,
Schema schema,
Table<R> aliased,
Field<?>[] parameters,
String comment) |
UDTImpl(String name,
Schema schema) |
Copyright © 2014. All Rights Reserved.