I thought I posted a message to this effect in August 2015 when I first found the issue, but cannot find it, so I am reposting now.
I have several .btm batch files that use "Here Doc Redirection" like this:
This example was created under Version 12 and works fine up to Version 17.
It does not work under Version 18 upto TCC 18.00.30 Windows 7 [Version 6.1.7601].
My work-around is to run under Version 17.
Has anyone else noticed/reported an issue with Here Doc Redirection before now?
Is it perhaps a setting (setdos, option) that may be different between versions?
Or is something broken?
John
I have several .btm batch files that use "Here Doc Redirection" like this:
Code:
: create new database file
sqlite3 %dbf <<-ESQL
CREATE TABLE brnch (
asset integer,
branch integer,
custnum integer,
cap integer,
external integer,
schedext integer,
internal integer,
xtended integer,
pcode integer,
town text,
customer text,
riskgroup text
);
ESQL
sqlite generates error message:
Error: incomplete SQL: C
This example was created under Version 12 and works fine up to Version 17.
It does not work under Version 18 upto TCC 18.00.30 Windows 7 [Version 6.1.7601].
My work-around is to run under Version 17.
Has anyone else noticed/reported an issue with Here Doc Redirection before now?
Is it perhaps a setting (setdos, option) that may be different between versions?
Or is something broken?
John