Hi
I'd like to know the Precompile & compiler options for accepting single quotes in COBOL DB2 program. While moving value to variable, single quotes are not taking. And same way in DB2 insert query also single quotes are not taking. I used APOST in precompilation and compilation, then only for DB2 insert query quotes are accepted, but not to cobol move variables.
After APOST ( APOSTSQL also) in precompile & compile
1. - INSERT INTO TAB1 VALUES ( 123, 'ABC') is working
2. MOVE 'ABC' TO VAR1 is not working.
Can some one tell me apart from compile options, where else I should change the settings?
Thanks in advance..