Move into SQLCODE
Status: Alpha
Brought to you by:
mrvenkatkrish
In many of our programs we set the sqlcode manually as a means to implement a validation error.
the converted cobol fails to convert
MOVE 001000 TO SQLCODE
It produces a java snippet
sqlca.setSqlcode(Sqlca.sqlcodeFmt_.format("001000"));
This code lacks the reference to Sqlca.sqlcodeFmt_
Attached is a sample netbeans project that shows the cobol test program and the java that is produced.