QueryContext

data class QueryContext(val sql: String, val parameters: Map<String, Any?>, val dbSql: String? = null, val dbParameters: List<Any?>? = null, val transactionStepIndex: Int? = null)

Context of a database operation execution.

Contains all the information needed to reproduce or debug a failed query, including both the high-level query and the low-level SQL sent to the database.

Constructors

Link copied to clipboard
constructor(sql: String, parameters: Map<String, Any?>, dbSql: String? = null, dbParameters: List<Any?>? = null, transactionStepIndex: Int? = null)

Properties

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

Functions

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard