Python Forum

Full Version: Executable [tkinter, cx_oracle] for another pc
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I completed a GUI in Pyrhon 3.6.5 that uses many sql queries from a database (Oracle 11g).
I made an executable file (with pyinstaller) that works fine to my PC (in which the db is located).

Is it possible for another PC to run this exe if the second PC has not access to the DB?

(I have already load the exe to a fileserver location where the two PCs are connected, from my PC, the exe runs normally when i open it inside the fileserver, from the other PC, the exe doesn't run at all).

Thanks in advance.
(Jul-19-2018, 10:49 AM)dimvord Wrote: [ -> ]Is it possible for another PC to run this exe if the second PC has not access to the DB?

If the other computer doesn't have access to the database, then what would running your program do? Act as if there's no data in the database? Create one locally? Throw error messages complaining about the lack of a database?