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 |
---|---|
CreateTableStorageStep |
CreateTableCommentStep.comment(Comment comment)
Add a comment to the table.
|
AlterViewFinalStep |
AlterViewStep.comment(Comment comment)
Specify a comment for a table using MySQL's syntax (which MySQL currently
doesn't support on views).
|
AlterTableFinalStep |
AlterTableStep.comment(Comment comment)
Specify a comment for a table using MySQL's syntax.
|
CommentOnFinalStep |
CommentOnIsStep.is(Comment comment)
Specify the comment for the given object type.
|
Modifier and Type | Method and Description |
---|---|
static Comment |
DSL.comment(String comment)
Create a comment.
|
Modifier and Type | Method and Description |
---|---|
static <T> Field<T> |
DSL.field(Name name,
DataType<T> type,
Comment comment)
Create a qualified field, given its (qualified) field name.
|
static Table<Record> |
DSL.table(Name name,
Comment comment)
Create a qualified table, given its table name.
|
Constructor and Description |
---|
CatalogImpl(Name name,
Comment comment) |
SchemaImpl(Name name,
Catalog catalog,
Comment comment) |
TableImpl(Name name,
Schema schema,
Table<?> child,
ForeignKey<?,R> path,
Table<R> aliased,
Field<?>[] parameters,
Comment comment) |
TableImpl(Name name,
Schema schema,
Table<R> aliased,
Field<?>[] parameters,
Comment comment) |
Copyright © 2019. All rights reserved.