Uses of Class
io.github.blyznytsiaorg.bibernate.dao.jdbc.dsl.UpdateQueryBuilder
Package
Description
-
Uses of UpdateQueryBuilder in io.github.blyznytsiaorg.bibernate.dao.jdbc
Modifier and TypeMethodDescriptionprivate void
SqlBuilder.populateFieldOrIncVersion
(String fieldName, boolean isVersionFound, String finalFieldVersionName, UpdateQueryBuilder update) Populates a field in an UPDATE operation with its corresponding value or increments the version field. -
Uses of UpdateQueryBuilder in io.github.blyznytsiaorg.bibernate.dao.jdbc.dsl
Modifier and TypeMethodDescriptionUpdateQueryBuilder.andCondition
(String condition) Adds an AND condition to the existing WHERE conditions.UpdateQueryBuilder.betweenCondition
(String field, Object lowerBound, Object upperBound) Adds a BETWEEN condition to the existing WHERE conditions.UpdateQueryBuilder.orCondition
(String condition) Adds an OR condition to the existing WHERE conditions.Adds a field to be updated with the specified value.UpdateQueryBuilder.setFieldIncrementVersion
(String fieldName) Adds a field to be updated with an incremented value.static UpdateQueryBuilder
Creates a new UpdateQueryBuilder with the specified table name.UpdateQueryBuilder.whereCondition
(String condition) Adds a WHERE condition to the UPDATE statement.