With the vertx reactive psql row return type. Is t...
# vertx
s
With the vertx reactive psql row return type. Is there a way to cast easily into a data class? Right now I'm building out manually via
row.getString($columnName)
but wanted to see if there was anything easier
a
I think there is a feature coming in vertx4 to do that
s
I have not checked kotlin in a while. I ended up writing my own SQL FRM layer that handles that, and provides a type safe query dsl. Thanks