Uses of Class
org.h2.command.ddl.AlterTableAddConstraint
-
Packages that use AlterTableAddConstraint 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 AlterTableAddConstraint in org.h2.command
Methods in org.h2.command that return AlterTableAddConstraint Modifier and Type Method Description static AlterTableAddConstraint
Parser. newPrimaryKeyConstraintCommand(SessionLocal session, Schema schema, java.lang.String tableName, Column column)
Create a new alter table command.Methods in org.h2.command with parameters of type AlterTableAddConstraint Modifier and Type Method Description private void
Parser. parseReferences(AlterTableAddConstraint command, Schema schema, java.lang.String tableName)
-
Uses of AlterTableAddConstraint in org.h2.command.ddl
Fields in org.h2.command.ddl declared as AlterTableAddConstraint Modifier and Type Field Description private AlterTableAddConstraint
CommandWithColumns. primaryKey
Methods in org.h2.command.ddl that return AlterTableAddConstraint Modifier and Type Method Description AlterTableAddConstraint
CommandWithColumns. getPrimaryKey()
Methods in org.h2.command.ddl with parameters of type AlterTableAddConstraint Modifier and Type Method Description private boolean
CommandWithColumns. setPrimaryKey(AlterTableAddConstraint primaryKey)
Set the primary key, but also check if a primary key with different columns is already defined.
-