I am working on utilities for an old INFORMIX-SE databse we have. I can get the program running through BDL on both LINUX and win2016, but when I try to run it through GAS, the system appears to ignore the fglprofile and says it cannot connect to dbmdefault.
The DB resides on an old Unixware7 box.
my code looks like this.
call FGL_SETENV("FGLSQLDEBUG","2")
let hbinfdir = FGL_GETENV("INFORMIXDIR")
if hbinfdir is null then
call FGL_SETENV("INFORMIXDIR","/Program Files/Informix Client-SDK")
end if
call FGL_SETENV("DBPATH","/data/peigms/data")
call FGL_SETENV("DBTEMP","/tmp")
call FGL_SETENV("INFORMIXSERVER","pei_data")
connect to "acis"
my FGLPROFILE has the following:
dbi.database.acis.source = "acis"
dbi.database.acis.driver = "dbmifx"
I compile the code and deploy through an archive with fglgar
I have tried both 32bit and 64 bit 4.10 INFORMIX cSDKs. as well as the dbmifx_9 driver
Any help would be appreciated.