Open
Description
- What versions are you using?
cx_Oracle 8.0.1
>>> import sys
>>> import platform
>>>
>>> print("platform.platform:", platform.platform())
platform.platform: Linux-4.18.0-193.29.1.el8_2.x86_64-x86_64-with-centos-7.9.2009-Core
>>> print("sys.maxsize > 2**32:", sys.maxsize > 2**32)
sys.maxsize > 2**32: True
>>> print("platform.python_version:", platform.python_version())
platform.python_version: 3.6.9
>>> import cx_Oracle
>>> print("cx_Oracle.version:", cx_Oracle.version)
cx_Oracle.version: 8.0.1
>>> print("cx_Oracle.clientversion:", cx_Oracle.clientversion())
cx_Oracle.clientversion: (19, 9, 0, 0, 0)
- Describe the problem
When I want to get a connection using cx_Oracle.connection(..., appcontext=CTX_ENTRIES)
, I succesfully see that context entries are applied.
But when I want to use a connection pool, I was unable to find a way to provide an appcontext
.
So my question is, is there a way to provide appcontext
when using SessionPool
, such as:
pool = cx_Oracle.SessionPool(..., appcontext=CTX_ENTRIES)