Yeah, but there's no constructor in komapper that allows me to pass an instance of the pool.. I can only pass a connection factory and let komapper handle it...
dave08
02/17/2023, 4:07 AM
So I don't have access to that method
t
Toshihiro Nakamura
02/17/2023, 1:05 PM
io.r2dbc.pool.ConnectionPool
is the subtype of
io.r2dbc.spi.ConnectionFactory
. So you can pass it to the R2dbcDatabase constructor.
The