I'm using vert.x's JDBCClient to get my database connections and it only gives me io.vertx.ext.sql.SQLConnection or io.vertx.reactivex.ext.sql.SQLConnection and none of them extends java.sql.Connection.
In order to call Liquibase from a verticle I need a java.sql.Connection.
I know that Vert.x uses C3Po on behind but I was not able to find any method that could give me the underlying connection.
How can I achieve that ?