Uses of Class
org.h2.command.ddl.CommandWithColumns
-
Packages that use CommandWithColumns Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.command.ddl Contains DDL (data definition language) and related SQL statements. -
-
Uses of CommandWithColumns in org.h2.command
Methods in org.h2.command with parameters of type CommandWithColumns Modifier and Type Method Description private void
Parser. parseTableColumnDefinition(CommandWithColumns command, Schema schema, java.lang.String tableName, boolean forCreateTable)
private void
Parser. readColumnConstraints(CommandWithColumns command, Schema schema, java.lang.String tableName, Column column)
-
Uses of CommandWithColumns in org.h2.command.ddl
Subclasses of CommandWithColumns in org.h2.command.ddl Modifier and Type Class Description class
AlterTableAlterColumn
This class represents the statements ALTER TABLE ADD, ALTER TABLE ADD IF NOT EXISTS, ALTER TABLE ALTER COLUMN, ALTER TABLE ALTER COLUMN SELECTIVITY, ALTER TABLE ALTER COLUMN SET DEFAULT, ALTER TABLE ALTER COLUMN DROP DEFAULT, ALTER TABLE ALTER COLUMN DROP EXPRESSION, ALTER TABLE ALTER COLUMN SET NULL, ALTER TABLE ALTER COLUMN DROP NULL, ALTER TABLE ALTER COLUMN SET VISIBLE, ALTER TABLE ALTER COLUMN SET INVISIBLE, ALTER TABLE DROP COLUMNclass
CreateTable
This class represents the statement CREATE TABLE
-