in reply to Re: here documents formatting
in thread here documents formatting
Ok, that's fine with me. Using the q\\ is still much better than...
$strSQL = "SELECT * " .
"FROM TABLE";
So, I changed it to this...
$strSQL = q|
SELECT *
FROM TABLE|;
...and that worked fine. Now at least I know that the other method isn't viable other than up against the left margin of the perl file.
Thanks for the replies monks.