Can't connect Python program in UBUNTU with Oracle DB via oracledb library #190
Replies: 2 comments 2 replies
-
The first error is due to the use of the 10g password verifier. If the parameter Regarding thick mode, you do have to install the Oracle Client libraries. Take a look at the installation documentation and especially note the discussion surrounding the Oracle Client libraries and the enabling of thick mode. |
Beta Was this translation helpful? Give feedback.
-
The second error ( |
Beta Was this translation helpful? Give feedback.
-
Hi,
I'm facing an issue with the connection to the Oracle DB of my enterprise's ERP with a python program that uses the oracledb library.
I tried to connect to the DB via thin mode but I get this error:
raise exc_type(_Error(message)) from cause
oracledb.exceptions.NotSupportedError: DPY-3015: password verifier type 0x939 is not supported by python-oracledb in thin mode
I tried then to connect using the thick mode but I get this error instead:
oracledb.exceptions.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client library: "libnnz21.so: cannot open shared object file: No such file or directory".
I don't know what to do now, reading the docs I can't find the answer to my problem.
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions