Uses of Class
org.jooq.conf.ExecuteWithoutWhere
-
Packages that use ExecuteWithoutWhere Package Description org.jooq.conf -
-
Uses of ExecuteWithoutWhere in org.jooq.conf
Fields in org.jooq.conf declared as ExecuteWithoutWhere Modifier and Type Field Description protected ExecuteWithoutWhere
Settings. executeDeleteWithoutWhere
protected ExecuteWithoutWhere
Settings. executeUpdateWithoutWhere
Methods in org.jooq.conf that return ExecuteWithoutWhere Modifier and Type Method Description static ExecuteWithoutWhere
ExecuteWithoutWhere. fromValue(String v)
ExecuteWithoutWhere
Settings. getExecuteDeleteWithoutWhere()
[#6771] Specifies whether DELETE statements are allowed to be executed lacking a WHERE clause.static ExecuteWithoutWhere
SettingsTools. getExecuteDeleteWithoutWhere(Settings settings)
Lazy access toSettings.getExecuteDeleteWithoutWhere()
.ExecuteWithoutWhere
Settings. getExecuteUpdateWithoutWhere()
[#6771] Specifies whether UPDATE statements are allowed to be executed lacking a WHERE clause.static ExecuteWithoutWhere
SettingsTools. getExecuteUpdateWithoutWhere(Settings settings)
Lazy access toSettings.getExecuteUpdateWithoutWhere()
.static ExecuteWithoutWhere
ExecuteWithoutWhere. valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecuteWithoutWhere[]
ExecuteWithoutWhere. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jooq.conf with parameters of type ExecuteWithoutWhere Modifier and Type Method Description void
Settings. setExecuteDeleteWithoutWhere(ExecuteWithoutWhere value)
Sets the value of the executeDeleteWithoutWhere property.void
Settings. setExecuteUpdateWithoutWhere(ExecuteWithoutWhere value)
Sets the value of the executeUpdateWithoutWhere property.Settings
Settings. withExecuteDeleteWithoutWhere(ExecuteWithoutWhere value)
Settings
Settings. withExecuteUpdateWithoutWhere(ExecuteWithoutWhere value)
-