[Stackoverflow] [Progress OpenEdge ABL] I'm trying to connect to a progress database with OpenEdge 10.1B Driver using python's pyodbc library but i ge

Status
Not open for further replies.
M

mert karadeniz

Guest
I can't provide the exact error but i will try to translate:

Traceback (most recent call last): File "\dellserver\uyumsoft$\dlc10\bin\odbctest.py", line 4, in cnxn = pyodbc.connect("DRIVER={Progress OpenEdge 10.1B Driver};" pyodbc.InterfaceError: (Specified driver could not be loaded due to system error 126: The specified module could not be found.(Progress OpenEdge 10.1B Driver, U:\dlc10\bin\pgoe1022.dll) (160) (SQLDriverConnect)')

here is my code

Code:
import pyodbc

# cnxn = pyodbc.connect('DRIVER={Progress OpenEdge 10.1B Driver};HostName=dellserver;DATABASENAME=uyum2008;PORTNUMBER=300;LogonID=sysprogress;PASSWORD=1')
cnxn = pyodbc.connect("DRIVER={Progress OpenEdge 10.1B Driver};HostName=dellserver;Database=uyum2008;server=192.168.0.253;LogonID=*****;PASSWORD=******")

I also get almost exactly the same error when i try to access the database using 64 bit odbc driver

but there is no error when i use the 32 bit driver...

Continue reading...
 
Status
Not open for further replies.
Top