Uses of Class
org.h2.table.TableData

Packages that use TableData
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). 
 

Uses of TableData in org.h2.index
 

Constructors in org.h2.index with parameters of type TableData
BaseHashIndex(TableData table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType)
           
BtreeIndex(Session session, TableData table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType, int headPos)
          Create a new b tree index with the given properties.
HashIndex(TableData table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType)
           
MultiVersionIndex(Index base, TableData table)
           
NonUniqueHashCursor(Session session, TableData tableData, IntArray positions)
           
NonUniqueHashIndex(TableData table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType)
           
PageBtreeIndex(TableData table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType, int headPos, Session session)
           
PageDataIndex(TableData table, int id, IndexColumn[] columns, IndexType indexType, int headPos, Session session)
           
PageDelegateIndex(TableData table, int id, java.lang.String name, IndexType indexType, PageDataIndex mainIndex, int headPos, Session session)
           
ScanIndex(TableData table, int id, IndexColumn[] columns, IndexType indexType)
           
TreeIndex(TableData table, int id, java.lang.String indexName, IndexColumn[] columns, IndexType indexType)
           
 

Uses of TableData in org.h2.schema
 

Methods in org.h2.schema that return TableData
 TableData Schema.createTable(CreateTableData data)
          Add a table to the schema.