Has anyone had their MF Cobol code just stop working properly? I have a series of programs, calling Oracle 8i stored procedures and they do not return data, when I am in the NE 5 IDE. I am also getting a file error status =107 if I run the EXE outside of the IDE. It dosn't seem to be just stored procedures, I have some in-line SQL that doesn't seem to want to return values, even though I can run the SQL in SQLPlus and get values.
Thank you !
#storedprocedure#EXECSQLEXECUTE#COBOLORACLEEXECSQLCOMPILE#Oracle#Oracle8i#COBOLnetexpressCOBCONFIGHi Dave,
Is the program compiled with Pro*COBOL or is it using OpenESQL?
What is the sqlcode value returned from the sql statements that are failing?
A file-status 107 means:
COBRT107 Operation not implemented in this run-time system (Fatal)
You are trying to perform a file operation which your run-time system does not support.
Do you know on what statement you are getting this error when run outside of the IDE?
You might want to check that the correct version of the run-time system cblrtss.dll is being picked up and that you do not have an older version in the PATH.
Net Express 5.0 is very old and you might want to look at upgrading to 5.1. That being said if it was working and now it is not I would look into something that has changed in the environment such as a Windows Update, new Oracle software or drivers, etc.
Thanks