setValues

abstract fun setValues(values: Map<String, Any?>): UpdateQueryBuilder

Sets values to update. Automatically generates placeholders in ":key" format for each key in the map. Values from the map must be passed in the terminal method (e.g., .execute()).


abstract fun setValues(values: List<String>): UpdateQueryBuilder

Sets values to update. Automatically generates placeholders in ":value" format for each value in the list.