Uses of Interface
org.jooq.CreateTableColumnStep
-
Packages that use CreateTableColumnStep Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of CreateTableColumnStep in org.jooq
Methods in org.jooq that return CreateTableColumnStep Modifier and Type Method Description @NotNull CreateTableColumnStep
CreateTableColumnStep. column(String field, DataType<?> type)
Add a column to the column list of theCREATE TABLE
statement.@NotNull CreateTableColumnStep
CreateTableColumnStep. column(Field<?> field)
Add a column to the column list of theCREATE TABLE
statement.<T> @NotNull CreateTableColumnStep
CreateTableColumnStep. column(Field<T> field, DataType<T> type)
Add a column to the column list of theCREATE TABLE
statement.@NotNull CreateTableColumnStep
CreateTableColumnStep. column(Name field, DataType<?> type)
Add a column to the column list of theCREATE TABLE
statement.@NotNull CreateTableColumnStep
CreateTableColumnStep. columns(String... fields)
Add several columns to the column list of theCREATE TABLE
statement.@NotNull CreateTableColumnStep
CreateTableColumnStep. columns(Collection<? extends Field<?>> fields)
Add several columns to the column list of theCREATE TABLE
statement.@NotNull CreateTableColumnStep
CreateTableColumnStep. columns(Field<?>... fields)
Add several columns to the column list of theCREATE TABLE
statement.@NotNull CreateTableColumnStep
CreateTableColumnStep. columns(Name... fields)
Add several columns to the column list of theCREATE TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createGlobalTemporaryTable(String table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createGlobalTemporaryTable(Name table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createGlobalTemporaryTable(Table<?> table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTable(String table)
Create a new DSLCREATE TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTable(Name table)
Create a new DSLCREATE TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTable(Table<?> table)
Create a new DSLCREATE TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTableIfNotExists(String table)
Create a new DSLCREATE TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTableIfNotExists(Name table)
Create a new DSLCREATE TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTableIfNotExists(Table<?> table)
Create a new DSLCREATE TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTemporaryTable(String table)
Create a new DSLCREATE TEMPORARY TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTemporaryTable(Name table)
Create a new DSLCREATE TEMPORARY TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTemporaryTable(Table<?> table)
Create a new DSLCREATE TEMPORARY TABLE
statement.@NotNull CreateTableColumnStep
DSLContext. createTemporaryTableIfNotExists(String table)
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.@NotNull CreateTableColumnStep
DSLContext. createTemporaryTableIfNotExists(Name table)
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement.@NotNull CreateTableColumnStep
DSLContext. createTemporaryTableIfNotExists(Table<?> table)
Create a new DSLCREATE TEMPORARY TABLE IF NOT EXISTS
statement. -
Uses of CreateTableColumnStep in org.jooq.impl
Methods in org.jooq.impl that return CreateTableColumnStep Modifier and Type Method Description CreateTableColumnStep
DefaultDSLContext. createGlobalTemporaryTable(String table)
CreateTableColumnStep
DefaultDSLContext. createGlobalTemporaryTable(Name table)
CreateTableColumnStep
DefaultDSLContext. createGlobalTemporaryTable(Table<?> table)
static @NotNull CreateTableColumnStep
DSL. createGlobalTemporaryTable(String table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createGlobalTemporaryTable(Name table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createGlobalTemporaryTable(Table<?> table)
Create a new DSLCREATE GLOBAL TEMPORARY TABLE
statement.CreateTableColumnStep
DefaultDSLContext. createTable(String table)
CreateTableColumnStep
DefaultDSLContext. createTable(Name table)
CreateTableColumnStep
DefaultDSLContext. createTable(Table<?> table)
static @NotNull CreateTableColumnStep
DSL. createTable(String table)
Create a new DSLCREATE TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTable(Name table)
Create a new DSLCREATE TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTable(Table<?> table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
DefaultDSLContext. createTableIfNotExists(String table)
CreateTableColumnStep
DefaultDSLContext. createTableIfNotExists(Name table)
CreateTableColumnStep
DefaultDSLContext. createTableIfNotExists(Table<?> table)
static @NotNull CreateTableColumnStep
DSL. createTableIfNotExists(String table)
Create a new DSLCREATE TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTableIfNotExists(Name table)
Create a new DSLCREATE TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTableIfNotExists(Table<?> table)
Create a new DSLCREATE TABLE
statement.CreateTableColumnStep
DefaultDSLContext. createTemporaryTable(String table)
CreateTableColumnStep
DefaultDSLContext. createTemporaryTable(Name table)
CreateTableColumnStep
DefaultDSLContext. createTemporaryTable(Table<?> table)
static @NotNull CreateTableColumnStep
DSL. createTemporaryTable(String table)
Create a new DSLCREATE TEMPORARY TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTemporaryTable(Name table)
Create a new DSLCREATE TEMPORARY TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTemporaryTable(Table<?> table)
Create a new DSLCREATE TEMPORARY TABLE
statement.CreateTableColumnStep
DefaultDSLContext. createTemporaryTableIfNotExists(String table)
CreateTableColumnStep
DefaultDSLContext. createTemporaryTableIfNotExists(Name table)
CreateTableColumnStep
DefaultDSLContext. createTemporaryTableIfNotExists(Table<?> table)
static @NotNull CreateTableColumnStep
DSL. createTemporaryTableIfNotExists(String table)
Create a new DSLCREATE TEMPORARY TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTemporaryTableIfNotExists(Name table)
Create a new DSLCREATE TEMPORARY TABLE
statement.static @NotNull CreateTableColumnStep
DSL. createTemporaryTableIfNotExists(Table<?> table)
Create a new DSLCREATE TEMPORARY TABLE
statement.
-