oracle / odpi

ODPI-C: Oracle Database Programming Interface for Drivers and Applications
https://oracle.github.io/odpi/
Other
264 stars 75 forks source link

thread-safe API #147

Closed felipenoris closed 3 years ago

felipenoris commented 3 years ago

Given a valid Pool, is dpiPool_acquireConnection() thread-safe? Given a valid connection acquired from a Pool, is dpiConn_close() thread-safe?

cjbj commented 3 years ago

In a threaded environment set DPI_MODE_CREATE_THREADED in createMode E.g. https://github.com/oracle/python-cx_Oracle/blob/master/src/cxoSessionPool.c#L92

felipenoris commented 3 years ago

Thanks, @cjbj ! It worked like a charm!