You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Postgres container I was using with the standard quarkus-jdbc-postgresql dependency can't be upgraded to the quarkus-hibernate-reactive-panache framework since the Postgres container only supports JDBC connections.
Purpose enhancement to provide support for Vert.x Drivers.
The text was updated successfully, but these errors were encountered:
Hi @cobar79 , can you please elaborate a bit? How do you connect using a Vert.x driver?
While the PostgreSQL module only supports a shorthand method for constructing the JDBC URL, you can connect to it using any kind of driver, just manually constructing the connection string, as you would for any other container.
In the test life cycle in the start override, I replaced the jdbc connection with the vertex connection string. With the jdbc connection, the reactive panache hibernate repo failed. With the vertical connection also failed. For now I reverted back to hibernate-orm
Module
Core
Proposal
Currently the Postgres container I was using with the standard quarkus-jdbc-postgresql dependency can't be upgraded to the quarkus-hibernate-reactive-panache framework since the Postgres container only supports JDBC connections.
Purpose enhancement to provide support for Vert.x Drivers.
The text was updated successfully, but these errors were encountered: