sqldelight-runtime / com.squareup.sqldelight.logs / StatementParameterInterceptor

StatementParameterInterceptor

class StatementParameterInterceptor : SqlPreparedStatement

Constructors

<init>

StatementParameterInterceptor()

Functions

bindBytes

fun bindBytes(index: Int, value: ByteArray?): Unit

Bind value to the underlying statement at index.

bindDouble

fun bindDouble(index: Int, value: Double?): Unit

Bind value to the underlying statement at index.

bindLong

fun bindLong(index: Int, value: Long?): Unit

Bind value to the underlying statement at index.

bindString

fun bindString(index: Int, value: String?): Unit

Bind value to the underlying statement at index.

getAndClearParameters

fun getAndClearParameters(): List<Any?>