Package org.h2.command.ddl
Class CreateTableData
java.lang.Object
org.h2.command.ddl.CreateTableData
The data required to create a table.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe column list.boolean
Whether the table is global temporary.int
The object id.boolean
The table is hidden.boolean
Whether the data should be persisted.boolean
Whether the indexes should be persisted.The schema.The session.The table engine to use for creating the table.The table engine params to use for creating the table.The table name.boolean
Whether this is a temporary table. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
schema
The schema. -
tableName
The table name. -
id
public int idThe object id. -
columns
The column list. -
temporary
public boolean temporaryWhether this is a temporary table. -
globalTemporary
public boolean globalTemporaryWhether the table is global temporary. -
persistIndexes
public boolean persistIndexesWhether the indexes should be persisted. -
persistData
public boolean persistDataWhether the data should be persisted. -
session
The session. -
tableEngine
The table engine to use for creating the table. -
tableEngineParams
The table engine params to use for creating the table. -
isHidden
public boolean isHiddenThe table is hidden.
-
-
Constructor Details
-
CreateTableData
public CreateTableData()
-