getValue
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.
Return
The converted value of type T, or null.
Parameters
row
The row to get the value from.
type
The target type class to convert the value to.
index
The index of the column in the row.
dialect
The database dialect.
columnType
The column type.