NamedSqlParameter

A named SQL bind parameter: the pair of a placeholder name in Sql.body and the value bound to it.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
abstract val name: String

The parameter name, without the leading colon (e.g. p0 for the placeholder :p0).

Link copied to clipboard
abstract val value: Any?

The value bound to the parameter. null is bound as SQL NULL.