ExposedSQLException

class ExposedSQLException(cause: Throwable?, val contexts: List<StatementContext>, transaction: Transaction) : SQLException

An exception that provides information about a database access error, within the contexts of the executed statements that caused the exception.

Constructors

Link copied to clipboard
constructor(cause: Throwable?, contexts: List<StatementContext>, transaction: Transaction)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
Link copied to clipboard
open val message: String?

Functions

Link copied to clipboard
fun <T> Iterable<T>.appendTo(    builder: QueryBuilder,     separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     transform: QueryBuilder.(T) -> Unit): QueryBuilder

Appends all the elements separated using separator and using the given prefix and postfix if supplied.

Link copied to clipboard
Link copied to clipboard
open override fun getErrorCode(): Int
Link copied to clipboard
Link copied to clipboard
open override fun getSQLState(): String
Link copied to clipboard
open operator override fun iterator(): MutableIterator<Throwable>
Link copied to clipboard
Link copied to clipboard
open override fun toString(): String