Uses of Class
cc.carm.lib.easysql.api.enums.ForeignKeyRule
-
Packages that use ForeignKeyRule Package Description cc.carm.lib.easysql.api.builder cc.carm.lib.easysql.api.enums -
-
Uses of ForeignKeyRule in cc.carm.lib.easysql.api.builder
Methods in cc.carm.lib.easysql.api.builder with parameters of type ForeignKeyRule Modifier and Type Method Description TableCreateBuilder
TableCreateBuilder. addForeignKey(@NotNull java.lang.String tableColumn, @Nullable java.lang.String constraintName, @NotNull java.lang.String foreignTable, @NotNull java.lang.String foreignColumn, @Nullable ForeignKeyRule updateRule, @Nullable ForeignKeyRule deleteRule)
以本表位从表,为表中某列设定外键。 -
Uses of ForeignKeyRule in cc.carm.lib.easysql.api.enums
Methods in cc.carm.lib.easysql.api.enums that return ForeignKeyRule Modifier and Type Method Description static ForeignKeyRule
ForeignKeyRule. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ForeignKeyRule[]
ForeignKeyRule. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-