values

abstract fun values(data: Map<String, Any?>): InsertQueryBuilder

Defines values to insert, automatically generating placeholders. This is the preferred, high-level method for inserting data. Values from the map must be passed in the terminal method (e.g., .execute()).

Parameters

data

Data map (column -> value).


abstract fun values(values: List<String>): InsertQueryBuilder

Defines values to insert, automatically generating placeholders in ":value" format for each value in the list.