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