Trying to connect odbc driver from Unisys from visual cobol, getting the error "x114 item beyond access item beyond bounds of memory (signal 11)".
I have crated a system dsn and trying to connect from cobol program like :
EXEC SQL
CONNECT TO :svr USER :usr-pass
END-EXEC
I also tried to use the below format :
STRING 'DRIVER={Unisys MCP ODBC Driver(x86)};'
'SERVER=xx.x.xx;'
'PORT=2012;'
'DATABASE=test;'
'USER=xxxx;'
'PASSWORD=xxxxx;' INTO BUFFER.
EXEC SQL
CONNECT TO :BUFFER
END-EXEC.
The above is not recognizing the system DSN created and it is giving error "The data source not found and no default driver specified" but while testing on the "ODBC data Source application", the connection is working fine.
Could some one help with what is needed to support unisys data source.
------------------------------
Kayal vizhi
Rocket Forum Shared Account
------------------------------




