Package | Description |
---|---|
org.h2.command.ddl |
Contains DDL (data definition language) and related SQL statements.
|
org.h2.constraint |
Database constraints such as check constraints, unique constraints, and referential constraints.
|
Modifier and Type | Method and Description |
---|---|
void |
AlterTableAddConstraint.setDeleteAction(ConstraintActionType action) |
void |
DropView.setDropAction(ConstraintActionType dropAction) |
void |
DropTable.setDropAction(ConstraintActionType dropAction) |
void |
DropSchema.setDropAction(ConstraintActionType dropAction) |
void |
AlterTableAddConstraint.setUpdateAction(ConstraintActionType action) |
Modifier and Type | Method and Description |
---|---|
ConstraintActionType |
ConstraintReferential.getDeleteAction() |
ConstraintActionType |
ConstraintReferential.getUpdateAction() |
static ConstraintActionType |
ConstraintActionType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConstraintActionType[] |
ConstraintActionType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
ConstraintReferential.setDeleteAction(ConstraintActionType action)
Set the action to apply (restrict, cascade,...) on a delete.
|
void |
ConstraintReferential.setUpdateAction(ConstraintActionType action)
Set the action to apply (restrict, cascade,...) on an update.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.