Uses of Class
org.h2.command.ddl.CreateTableData
-
Packages that use CreateTableData Package Description org.h2.api Contains interfaces for user-defined extensions, such as triggers and user-defined aggregate functions.org.h2.command.ddl Contains DDL (data definition language) and related SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.table Classes related to a table and table meta data. -
-
Uses of CreateTableData in org.h2.api
Methods in org.h2.api with parameters of type CreateTableData Modifier and Type Method Description Table
TableEngine. createTable(CreateTableData data)
Create new table. -
Uses of CreateTableData in org.h2.command.ddl
Fields in org.h2.command.ddl declared as CreateTableData Modifier and Type Field Description private CreateTableData
CreateTable. data
-
Uses of CreateTableData in org.h2.engine
Methods in org.h2.engine that return CreateTableData Modifier and Type Method Description private CreateTableData
Database. createSysTableData()
-
Uses of CreateTableData in org.h2.mvstore.db
Methods in org.h2.mvstore.db with parameters of type CreateTableData Modifier and Type Method Description MVTable
Store. createTable(CreateTableData data)
Create a table.Constructors in org.h2.mvstore.db with parameters of type CreateTableData Constructor Description MVTable(CreateTableData data, Store store)
-
Uses of CreateTableData in org.h2.schema
Methods in org.h2.schema with parameters of type CreateTableData Modifier and Type Method Description Table
Schema. createTable(CreateTableData data)
Add a table to the schema. -
Uses of CreateTableData in org.h2.table
Constructors in org.h2.table with parameters of type CreateTableData Constructor Description TableBase(CreateTableData data)
-