Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
CreateTableColumnStep |
CreateTableColumnStep.column(Field<?> field)
Add a column to the column list of the
CREATE TABLE
statement. |
CreateTableColumnStep |
CreateTableAsStep.column(Field<?> field)
Add a column to the column list of the
CREATE TABLE
statement. |
<T> CreateTableColumnStep |
CreateTableColumnStep.column(Field<T> field,
DataType<T> type)
Add a column to the column list of the
CREATE TABLE statement. |
<T> CreateTableColumnStep |
CreateTableAsStep.column(Field<T> field,
DataType<T> type)
Add a column to the column list of the
CREATE TABLE statement. |
CreateTableColumnStep |
CreateTableColumnStep.column(Name field,
DataType<?> type)
Add a column to the column list of the
CREATE TABLE statement. |
CreateTableColumnStep |
CreateTableAsStep.column(Name field,
DataType<?> type)
Add a column to the column list of the
CREATE TABLE statement. |
CreateTableColumnStep |
CreateTableColumnStep.column(String field,
DataType<?> type)
Add a column to the column list of the
CREATE TABLE statement. |
CreateTableColumnStep |
CreateTableAsStep.column(String field,
DataType<?> type)
Add a column to the column list of the
CREATE TABLE statement. |
CreateTableColumnStep |
CreateTableColumnStep.columns(Collection<? extends Field<?>> fields)
Add several columns to the column list of the
CREATE TABLE
statement. |
CreateTableColumnStep |
CreateTableAsStep.columns(Collection<? extends Field<?>> fields)
Add several columns to the column list of the
CREATE TABLE
statement. |
CreateTableColumnStep |
CreateTableColumnStep.columns(Field<?>... fields)
Add several columns to the column list of the
CREATE TABLE
statement. |
CreateTableColumnStep |
CreateTableAsStep.columns(Field<?>... fields)
Add several columns to the column list of the
CREATE TABLE
statement. |
Copyright © 2016. All Rights Reserved.