Brian Estrada
05/05/2022, 3:07 PMhfhbd
05/05/2022, 3:26 PMBrian Estrada
05/05/2022, 9:23 PMoverride fun readObject(rs: ResultSet, index: Int): Any? {
val value = super.readObject(rs, index)
return if (eagerLoading && value != null) {
valueFromDB(value)
} else {
value
}
}
TextColumnType()
and it seems like it’s working now? but not sure any feedback is welcomehfhbd
05/06/2022, 6:11 AM