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.