Uses of Class
com.gengoai.sql.statement.UpdateType
-
Packages that use UpdateType Package Description com.gengoai.sql com.gengoai.sql.object com.gengoai.sql.sqlite com.gengoai.sql.statement -
-
Uses of UpdateType in com.gengoai.sql
Methods in com.gengoai.sql with parameters of type UpdateType Modifier and Type Method Description protected String
PostgreSQLDialect. updateType(UpdateType updateType)
protected String
SQLDialect. updateType(UpdateType updateType)
Update type string. -
Uses of UpdateType in com.gengoai.sql.object
Methods in com.gengoai.sql.object with parameters of type UpdateType Modifier and Type Method Description int
Table. update(@NonNull SQLContext context, @NonNull UpdateType updateType, @NonNull Map<String,SQLElement> setParameters, @NonNull SQLElement where)
Update
Table. update(@NonNull UpdateType updateType)
Creates an update statement for this table -
Uses of UpdateType in com.gengoai.sql.sqlite
Methods in com.gengoai.sql.sqlite with parameters of type UpdateType Modifier and Type Method Description Update
SQLiteFullTextTable. update(@NonNull UpdateType updateType)
Creates an update statement for this table -
Uses of UpdateType in com.gengoai.sql.statement
Methods in com.gengoai.sql.statement that return UpdateType Modifier and Type Method Description static UpdateType
UpdateType. valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateType[]
UpdateType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.gengoai.sql.statement with parameters of type UpdateType Modifier and Type Method Description Update
Update. type(@NonNull UpdateType type)
Sets the type of update to perform.
-