Please make it possible to use https://github.com/r2dbc/r2dbc-client
A pluggable low-level database access layer would be even more better. It would be possible to support more "special" non-standard implementations like https://github.com/reactiverse/reactive-pg-client
R2DBC support is built best on top of R2DBC SPI directly and not on R2DBC Client. R2DBC is for reactive programming what JDBC is for imperative programming. R2DBC can easily wrap less-capable asynchronous/non-blocking SQL database drivers exposing their functionality through a standardized SPI.
Javadoc: https://r2dbc.io/spec/0.8.0.M8/api/
Is this in progress? Would love to use Exposed if this was in.
Any news? :)
Are there any plan on this?
Alright its my time to shine. Ahem.
Any news on this?
Hi everyone, I have a prove of concept implementation of RDBC driver support, BUT!
RDBC api doesn't provide any methods to obtain database metadata like listing of database tables.
Right now I had decided to add ability to provide optional JDBC connection as a Database.connect parameter if you'd like to use some DDL.
It means that all DML operations will be handled by RDBC driver and all other with JDBC.
What do you think about it?
Brilliant news!!!
But here are a couple of things:
@WithoutCaps ,
@Tapac Are you planning on having people try out the proof of concept?
@jvisker , yep. Have to add some tests and add documentation on how to use it. Hopefully I'll release it on the next week.
Did I miss this release somehow?
Nope, I just stuck with fixing all current tests with R2DBC driver. The tests with savepoints still fail, so I can't release it right now.
hi @Tapac - any news here?
Any updates?
Is there an estimated completion date for this issue?
Most helpful comment
Is this in progress? Would love to use Exposed if this was in.