SqlArg

sealed interface SqlArg

A bound query argument, tagged with how it must be bound to the statement.

Inheritors

Types

Link copied to clipboard
data class BytesArg(val value: ByteArray?) : SqlArg
Link copied to clipboard
data class DoubleArg(val value: Double?) : SqlArg
Link copied to clipboard
data class LongArg(val value: Long?) : SqlArg
Link copied to clipboard
data class StringArg(val value: String?) : SqlArg