English | 简体中文

api-docs / org.ktorm.support.postgresql / get

get

@JvmName("getValue") operator fun ColumnDeclaring<HStore>.get(
    expr: ColumnDeclaring<String>
): HStoreExpression<String>
(source code)

@JvmName("getValue") operator fun ColumnDeclaring<HStore>.get(
    argument: String
): HStoreExpression<String>
(source code)

HStore get-value-for-key operator, translated to the -> operator in PostgreSQL.

@JvmName("getValues") operator fun ColumnDeclaring<HStore>.get(
    expr: ColumnDeclaring<TextArray>
): HStoreExpression<TextArray>
(source code)

@JvmName("getValues") operator fun ColumnDeclaring<HStore>.get(
    argument: TextArray
): HStoreExpression<TextArray>
(source code)

HStore get-values-for-keys operator, translated to the -> operator in PostgreSQL.