English | 简体中文

api-docs / org.ktorm.database / DialectFeatureNotSupportedException

DialectFeatureNotSupportedException

class DialectFeatureNotSupportedException : 
    UnsupportedOperationException
(source code)

Thrown to indicate that a feature is not supported by the current dialect.

Parameters

message - the detail message, which is saved for later retrieval by Throwable.message.

cause - the cause, which is saved for later retrieval by Throwable.cause.

Constructors

NameSummary

<init>

DialectFeatureNotSupportedException(
    message: String? = null,
    cause: Throwable? = null)

Thrown to indicate that a feature is not supported by the current dialect.

Extension Functions

NameSummary

eq

infix fun <T : Any> T.eq(
    expr: ColumnDeclaring<T>
): BinaryExpression<Boolean>

Equal operator, translated to = in SQL.

neq

infix fun <T : Any> T.neq(
    expr: ColumnDeclaring<T>
): BinaryExpression<Boolean>

Not-equal operator, translated to <> in SQL.

notEq

infix fun <T : Any> T.notEq(
    expr: ColumnDeclaring<T>
): BinaryExpression<Boolean>

Not-equal operator, translated to <> in SQL.