Is oracle.ucp.jdbc.PoolDataSource.getConnection() multi-thread safe?

194 Views Asked by At

Can we call oracle.ucp.jdbc.PoolDataSource.getConnection() from multiple threads ?

1

There are 1 best solutions below

0
Saurabh Verma On

oracle.ucp.jdbc.PoolDataSource.getConnection() API is used to borrow a connection from the ucp pool. So, yes you can call it from multiple threads.