Uses of Class
org.h2.constraint.ConstraintActionType
-
Packages that use ConstraintActionType 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.org.h2.constraint Database constraints such as check constraints, unique constraints, and referential constraints.org.h2.jdbc.meta Implementation of the JDBC database metadata API (package java.sql).org.h2.table Classes related to a table and table meta data. -
-
Uses of ConstraintActionType in org.h2.command
Methods in org.h2.command that return ConstraintActionType Modifier and Type Method Description private ConstraintActionType
Parser. parseAction()
private ConstraintActionType
Parser. parseCascadeOrRestrict()
-
Uses of ConstraintActionType in org.h2.command.ddl
Fields in org.h2.command.ddl declared as ConstraintActionType Modifier and Type Field Description private ConstraintActionType
AlterTableAddConstraint. deleteAction
private ConstraintActionType
AlterTableDropConstraint. dropAction
private ConstraintActionType
DropDomain. dropAction
private ConstraintActionType
DropSchema. dropAction
private ConstraintActionType
DropTable. dropAction
private ConstraintActionType
DropView. dropAction
private ConstraintActionType
AlterTableAddConstraint. updateAction
Methods in org.h2.command.ddl with parameters of type ConstraintActionType Modifier and Type Method Description void
AlterTableAddConstraint. setDeleteAction(ConstraintActionType action)
void
AlterTableDropConstraint. setDropAction(ConstraintActionType dropAction)
void
DropDomain. setDropAction(ConstraintActionType dropAction)
void
DropSchema. setDropAction(ConstraintActionType dropAction)
void
DropTable. setDropAction(ConstraintActionType dropAction)
void
DropView. setDropAction(ConstraintActionType dropAction)
void
AlterTableAddConstraint. setUpdateAction(ConstraintActionType action)
-
Uses of ConstraintActionType in org.h2.constraint
Fields in org.h2.constraint declared as ConstraintActionType Modifier and Type Field Description private ConstraintActionType
ConstraintReferential. deleteAction
private ConstraintActionType
ConstraintReferential. updateAction
Methods in org.h2.constraint that return ConstraintActionType Modifier and Type Method Description ConstraintActionType
ConstraintReferential. getDeleteAction()
ConstraintActionType
ConstraintReferential. getUpdateAction()
static ConstraintActionType
ConstraintActionType. valueOf(java.lang.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.Methods in org.h2.constraint with parameters of type ConstraintActionType Modifier and Type Method Description private Prepared
ConstraintReferential. prepare(SessionLocal session, java.lang.String sql, ConstraintActionType action)
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. -
Uses of ConstraintActionType in org.h2.jdbc.meta
Methods in org.h2.jdbc.meta with parameters of type ConstraintActionType Modifier and Type Method Description private static ValueSmallint
DatabaseMetaLocal. getRefAction(ConstraintActionType action)
-
Uses of ConstraintActionType in org.h2.table
Methods in org.h2.table with parameters of type ConstraintActionType Modifier and Type Method Description private static short
InformationSchemaTableLegacy. getRefAction(ConstraintActionType action)
-