The Quarkus Oracle reactive extension is in tech preview for a long time for the RedHat supported build, so I'm looking for alternatives for prod use.
I'm using Mutiny and reactive rest and rest client, but this set up is incomplete without a stable Oracle reactive extension.
Quarkus reactive client for RDBMS is based vertx sql client , which supports the popular databases. But it is not compatible with R2dbc.
You can use the sql client directly, or use Hibernate Reactive(based on vertx-sql-client) API in Quarkus projects.
Check my example project:
Replace the
vertx-pg-clientwithvertx-oracle-clientand update SQL to Oracle compatible(for pgClient example) in your case.