Uses of Class
org.h2.command.ddl.DefineCommand
Packages that use DefineCommand
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains DDL (data definition language) and related SQL statements.
Contains DML (data manipulation language) and related SQL statements.
-
Uses of DefineCommand in org.h2.command
Methods in org.h2.command that return DefineCommandModifier and TypeMethodDescriptionprivate DefineCommand
Parser.parseAlterDomain()
private DefineCommand
Parser.parseAlterView()
private DefineCommand
Parser.parseTableConstraintIf
(String tableName, Schema schema, boolean ifTableExists) -
Uses of DefineCommand in org.h2.command.ddl
Subclasses of DefineCommand in org.h2.command.ddlModifier and TypeClassDescriptionclass
The base class for ALTER DOMAIN commands.class
This class represents the statement ALTER DOMAIN ADD CONSTRAINTclass
This class represents the statement ALTER DOMAIN DROP CONSTRAINTclass
This class represents the statements ALTER DOMAIN SET DEFAULT ALTER DOMAIN DROP DEFAULT ALTER DOMAIN SET ON UPDATE ALTER DOMAIN DROP ON UPDATEclass
This class represents the statement ALTER DOMAIN RENAMEclass
This class represents the statement ALTER DOMAIN RENAME CONSTRAINTclass
This class represents the statement ALTER INDEX RENAMEclass
This class represents the statement ALTER SCHEMA RENAMEclass
This class represents the statement ALTER SEQUENCE.class
The base class for ALTER TABLE commands.class
This class represents the statement ALTER TABLE ADD CONSTRAINTclass
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
This class represents the statement ALTER TABLE DROP CONSTRAINTclass
This class represents the statement ALTER TABLE RENAMEclass
This class represents the statement ALTER TABLE ALTER COLUMN RENAMEclass
This class represents the statement ALTER TABLE RENAME CONSTRAINTclass
This class represents the statements ALTER USER ADMIN, ALTER USER RENAME, ALTER USER SET PASSWORDclass
This class represents the statement ALTER VIEWclass
This class represents the statements ANALYZE and ANALYZE TABLEclass
class
This class represents the statement CREATE AGGREGATEclass
This class represents the statement CREATE CONSTANTclass
This class represents the statement CREATE DOMAINclass
This class represents the statement CREATE ALIASclass
This class represents the statement CREATE INDEXclass
This class represents the statement CREATE LINKED TABLEclass
This class represents the statement CREATE ROLEclass
This class represents the statement CREATE SCHEMAclass
This class represents the statement CREATE SEQUENCE.class
This class represents the statement CREATE SYNONYMclass
This class represents the statement CREATE TABLEclass
This class represents the statement CREATE TRIGGERclass
This class represents the statement CREATE USERclass
This class represents the statement CREATE VIEWclass
This class represents the statement DEALLOCATEclass
This class represents the statement DROP AGGREGATEclass
This class represents the statement DROP CONSTANTclass
This class represents the statement DROP ALL OBJECTSclass
This class represents the statement DROP DOMAINclass
This class represents the statement DROP ALIASclass
This class represents the statement DROP INDEXclass
This class represents the statement DROP ROLEclass
This class represents the statement DROP SCHEMAclass
This class represents the statement DROP SEQUENCEclass
This class represents the statement DROP SYNONYMclass
This class represents the statement DROP TABLEclass
This class represents the statement DROP TRIGGERclass
This class represents the statement DROP USERclass
This class represents the statement DROP VIEWclass
This class represents the statements GRANT RIGHT, GRANT ROLE, REVOKE RIGHT, REVOKE ROLEclass
This class represents the statement PREPAREclass
This class represents a non-transaction statement that involves a schema.(package private) class
This class represents a non-transaction statement that involves a schema and requires schema owner rights.class
This class represents the statement COMMENTclass
This class represents the statement TRUNCATE TABLEFields in org.h2.command.ddl with type parameters of type DefineCommandModifier and TypeFieldDescriptionprivate ArrayList
<DefineCommand> CommandWithColumns.constraintCommands
Methods in org.h2.command.ddl that return types with arguments of type DefineCommandModifier and TypeMethodDescriptionprivate ArrayList
<DefineCommand> CommandWithColumns.getConstraintCommands()
Methods in org.h2.command.ddl with parameters of type DefineCommandModifier and TypeMethodDescriptionvoid
CommandWithColumns.addConstraintCommand
(DefineCommand command) Add a constraint statement to this statement. -
Uses of DefineCommand in org.h2.command.dml
Subclasses of DefineCommand in org.h2.command.dmlModifier and TypeClassDescriptionclass
This class represents the statement ALTER TABLE SET