Uses of Class
io.github.blyznytsiaorg.bibernate.dao.jdbc.dsl.UpdateQueryBuilder
Packages that use UpdateQueryBuilder
Package
Description
-
Uses of UpdateQueryBuilder in io.github.blyznytsiaorg.bibernate.dao.jdbc
Methods in io.github.blyznytsiaorg.bibernate.dao.jdbc with parameters of type UpdateQueryBuilderModifier and TypeMethodDescriptionprivate voidSqlBuilder.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
Methods in io.github.blyznytsiaorg.bibernate.dao.jdbc.dsl that return UpdateQueryBuilderModifier 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 UpdateQueryBuilderCreates a new UpdateQueryBuilder with the specified table name.UpdateQueryBuilder.whereCondition(String condition) Adds a WHERE condition to the UPDATE statement.