R2dbcTypeMapping

Base representation of a type mapper that allows logic for setting a value in a Statement and getting a value from a Row.

Inheritors

Functions

Link copied to clipboard
abstract fun <T> getValue(row: Row, type: Class<T>?, index: Int, dialect: DatabaseDialect, columnType: IColumnType<*>): T?

Tries to get a value using the registered mappers.

Link copied to clipboard
abstract fun setValue(statement: Statement, dialect: DatabaseDialect, columnType: IColumnType<*>, value: Any?, index: Int): Boolean

Tries to set a value using the registered mappers.