| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| 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 |
SchemaProvider.getSchema()
Deprecated.
|
Schema |
Routine.getSchema()
Get the routine schema
|
Schema |
Package.getSchema()
Get the package schema
|
Schema |
SchemaMapping.map(Schema schema)
Deprecated.
Apply mapping to a given schema
|
| 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
|
void |
SchemaMapping.use(Schema schema)
Deprecated.
Set a schema as the default schema.
|
int |
FactoryOperations.use(Schema schema)
Use a schema as the default schema of the underlying connection.
|
| 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 |
SequenceImpl.getSchema() |
static Schema |
Factory.schemaByName(String name)
Create a qualified schema, given its schema name
This constructs a schema reference given the schema's qualified name.
|
| Modifier and Type | Method and Description |
|---|---|
int |
FactoryProxy.use(Schema schema)
Deprecated.
|
int |
Factory.use(Schema schema)
Use a schema as the default schema of the underlying connection.
|
| Constructor and Description |
|---|
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema,
DataType<T> type)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema,
Package pkg)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
AbstractRoutine(SQLDialect dialect,
String name,
Schema schema,
Package pkg,
DataType<T> type)
Deprecated.
- 2.1.0 [#625] - Regenerate your schema
|
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) |
UDTImpl(String name,
Schema schema) |
UpdatableTableImpl(String name,
Schema schema) |
UpdatableTableImpl(String name,
Schema schema,
Table<R> aliased) |
Copyright © 2013. All Rights Reserved.