| Modifier and Type | Field and Description |
|---|---|
static ReferentialAction |
CASCADE
Represents the cascading policy (
CASCADE. |
static ReferentialAction |
NO_ACTION
Represents the policy, which checks the integrity after
UPDATE or DELETE statement, and
the statement will not be executed if it violates integrity. |
static ReferentialAction |
RESTRICT
Represents the policy, which checks the integrity before
UPDATE or DELETE statement, and
the statement will not be executed if it violates integrity. |
static ReferentialAction |
SET_DEFAULT
Represents the policy, which sets the value as default (
SET DEFAULT. |
static ReferentialAction |
SET_NULL
Represents the policy, which sets the value as
NULL (SET NULL. |
| Constructor and Description |
|---|
ReferentialAction() |
public static final ReferentialAction CASCADE
CASCADE.public static final ReferentialAction SET_NULL
NULL (SET NULL.public static final ReferentialAction SET_DEFAULT
SET DEFAULT.public static final ReferentialAction RESTRICT
UPDATE or DELETE statement, and
the statement will not be executed if it violates integrity.public static final ReferentialAction NO_ACTION
UPDATE or DELETE statement, and
the statement will not be executed if it violates integrity.Copyright © 2010-2012. All Rights Reserved.