English | 简体中文

api-docs / org.ktorm.dsl / QueryRowSet / get

get

operator fun <C : Any> get(column: Column<C>): C? (source code)

Obtain the value of the specific Column instance.

Note that if the column doesn’t exist in the result set, this function will return null rather than
throwing an exception.

operator fun <C : Any> get(
    column: ColumnDeclaringExpression<C>
): C?
(source code)

Obtain the value of the specific ColumnDeclaringExpression instance.

Note that if the column doesn’t exist in the result set, this function will return null rather than
throwing an exception.