SiouxCityElvis
Programmer
Hello everyone,
I am using RMCOBOL-85 on Linux.
The following I have on one line but it goes past column 72 and thus I get an error
1152 "SELECT JunkId, JunkName, JunkDate, Descripti
***** 1) 0098: E Nonnumeric literal must end with quotation mark. (scan suppr
I know that I'm going to have long SQL statements like this and longer ones so is there any way I can append two stings together or continue a string from line to line?
I tried something like:
I am using RMCOBOL-85 on Linux.
The following I have on one line but it goes past column 72 and thus I get an error
1152 "SELECT JunkId, JunkName, JunkDate, Descripti
***** 1) 0098: E Nonnumeric literal must end with quotation mark. (scan suppr
Code:
"SELECT JunkId, JunkName, JunkDate, Description FROM Junk".
I know that I'm going to have long SQL statements like this and longer ones so is there any way I can append two stings together or continue a string from line to line?
I tried something like:
Code:
"SELECT JunkId, JunkName, "
+ "JunkDate, Description "
+ "FROM Junk".