mithlond
03/09/2022, 7:07 PMqueryExecute("
SELECT *
FROM someTable
INNER JOIN blahTable" // some handy comment
& " INNER JOIN otherTable
WHERE x = y",
{...}, {...}
)
but..... ew.Dave Merrill
03/14/2022, 3:43 PMmithlond
03/14/2022, 4:49 PM--
line-ending comments and/or the c-style /**/
ones). I suspect though that they just remove line breaks before feeding the query over to the db, so the --
are out. No reason why it couldn't support /**/
though. Or even support both and strip them out before sending to the db. 🤷Dave Merrill
03/14/2022, 4:59 PM/**/
?
I thought it would.mithlond
03/14/2022, 5:52 PM