fetchRows

fun fetchRows(params: Map<String, Any?>): List<Row>

Executes the query and returns every row, undecoded into any particular shape.

Return

All matching rows; empty when nothing matched.

Parameters

params

Values by parameter name, without the leading @.

Throws

MISSING_NAMED_PARAMETER if the statement names a parameter params omits.


fun fetchRows(vararg params: Pair<String, Any?>): List<Row>

Same as fetchRows, with the values given as Pairs.