instantclient

python-oracledb module fails to use instantclient in a docker container

python-oracledb module fails to use instantclient in a docker container Question: I’m trying to build a docker image to access an oracle database at runtime, I’m having the following error message: DPI-1047: Cannot locate a 64-bit Oracle Client library: "/oracle/instantclient/libclntsh.so: cannot open shared object file: No such file or directory". Inside the container, there actually …

Total answers: 3

Extract data from Oracle Database with Pandas without Oracle Instant Client

Extract data from Oracle Database with Pandas without Oracle Instant Client Question: I’m trying to connect to an Oracle Database using pandas + sqlalchemy using this code: from sqlalchemy.engine import create_engine import pandas as pd DIALECT = ‘oracle’ SQL_DRIVER = ‘cx_oracle’ USERNAME = ‘USER’ PASSWORD = ‘PASS’ HOST = ‘HOST’ PORT = 1521 SERVICE = …

Total answers: 1