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 Stack Overflow Article (look at top answer) <https://stackoverflow.com/questions/56119490/cx-oracle-error-dpi-1047-cannot-locate-a-64-bit-oracle-client-library#:~:text=DPI-1047:%20Cannot%20locate%20a%2064-bit%20Oracle%20Client%20library,-Ask%20Question&text=That%20error%20suggests%20that%20you,the%20link%20it%20gave%20you?&text=Check%20that%20Python,%20cx_Oracle%20and,bit%20or%20all%2032-bit.> Any clue how I add these dll files to the pyinstaller, within the spec file? Thanks, Max -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/ecd16948-3d8d-4894-a2a6-4d4f65fa8ccfn%40googlegroups.com.
