SelectQuery

data class SelectQuery(val sql: String, val columns: List<Field>, val bindings: List<SelectQuery.Binding>)

Input for SelectQuerier which contains a parameterize SQL query along with its parameter bindings and a description of the columns of the result set.

Constructors

Link copied to clipboard
constructor(sql: String, columns: List<Field>, bindings: List<SelectQuery.Binding>)

Types

Link copied to clipboard
data class Binding(val value: JsonNode, val type: LosslessJdbcFieldType<*, *>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val sql: String