Hi,
I currently have a python script which uses the library python-oracledb to connect to an oracle db database. The database I'm connecting to is still on version 11 and therefore within python-oracledb I have to enable 'Thick Mode' to allow it to connect accordingly.
My problem arises that to run oracledb in thickmode I must add a number of DLL files to my python folder (for it to run on my local machine) so now when I use PyInstaller it is unable to enable thick mode as it requires these files.
Look at the top response to this stack overflow article to understand what I had to do to initially set it up
Any clue how I add these dll files to the pyinstaller, within the spec file?
Thanks,
Max