- All Superinterfaces:
ColumnElement
,QueryPart
,Serializable
A comment.
Most RDBMS support commenting (i.e. documenting) stored objects, such as
Schema
, Table
, Field
, and other objects. Such
comments can be modelled in DDL statements as well as retrieved from meta
data through the Comment
type.
Example:
// Assuming import static org.jooq.impl.DSL.*;
using(configuration)
.commentOnTable(TABLE)
.is(comment("My Comment"))
.execute();
Instances can be created using DSL.comment(String)
and overloads.
- Author:
- Lukas Eder