Hi
I'm trying to understand:
what is the most future-proof way to work with SQL towards an oracle.ucp.jdbc.PoolDataSourceFactory...
is a bit confusing to me...
"The client API is represented with the interface JDBCClient."
...
"The JDBC Client API created in Vert.x 3 is now deprecated and instead the new SQL Client API should be used."
(exactly, which class is deprecated?)
My current code
dataSource = oracle.ucp.jdbc.PoolDataSourceFactory.getPoolDataSource()
dataSource.setConnectionFactoryClassName("oracle.jdbc.pool.OracleDataSource")
...
SQLClient client = JDBCClient.create(vertx, dataSource)
Is this the best way possible (for ORA ucp pool)?
Is it "future proof"?
Or, is it using some old, deprecated API?
br
klas