org.h2.command.ddl
Class CreateTableData

java.lang.Object
  extended by org.h2.command.ddl.CreateTableData

public class CreateTableData
extends java.lang.Object

The data required to create a table.


Field Summary
 ObjectArray<Column> columns
          The column list.
 int headPos
          The head position.
 int id
          The object id.
 boolean persistData
          Whether the data should be persisted.
 boolean persistIndexes
          Whether the indexes should be persisted.
 Schema schema
          The schema.
 Session session
          The session.
 java.lang.String tableName
          The table name.
 boolean temporary
          Whether this is a temporary table.
 
Constructor Summary
CreateTableData()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

schema

public Schema schema
The schema.


tableName

public java.lang.String tableName
The table name.


id

public int id
The object id.


columns

public ObjectArray<Column> columns
The column list.


temporary

public boolean temporary
Whether this is a temporary table.


persistIndexes

public boolean persistIndexes
Whether the indexes should be persisted.


persistData

public boolean persistData
Whether the data should be persisted.


headPos

public int headPos
The head position.


session

public Session session
The session.

Constructor Detail

CreateTableData

public CreateTableData()