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.booleanWhether the table is global temporary.intThe object id.booleanWhether the data should be persisted.booleanWhether 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.booleanWhether 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.
-
-
Constructor Details
-
CreateTableData
public CreateTableData()
-