Package-level declarations
Types
Link copied to clipboard
interface NoticeHandler
Interface for handling PostgreSQL notices. Implementations can be provided via the connection URL property noticeHandler.
Link copied to clipboard
data class PgNotice(val processId: Int, val severity: String, val localizedSeverity: String, val code: String, val message: String, val detail: String?, val hint: String?, val position: Int?, val internalPosition: Int?, val internalQuery: String?, val where: String?, val schema: String?, val table: String?, val column: String?, val datatype: String?, val constraint: String?, val file: String?, val line: Int?, val routine: String?)
Represents a notice or warning message received from the PostgreSQL backend.