I have my tables schema generated from the database, I'm trying to execute the ddl to create the tables using an r2dbc connection to an h2 in memory, but I cannot figure out what should I do.
The DSLContext.ddl
method returns a Queries
object that is not a Publisher
and I cannot find any way to execute those queries with a Publisher
but only doing a .block()
method that is failing because r2dbc doesn't allow for blocking calls.
Any help?