You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the following code in a .cfm file, the color formatting gets confused by the use of '#' within the SQL statement and doesn't match it to the second one.
<cfquery>
BULK INSERT VAR1 FROM 'C:\#path#'
WITH (
FIRSTROW=2,
BATCHSIZE=500000,
FIELDTERMINATOR='\t'
);
</cfquery>
The text was updated successfully, but these errors were encountered:
Thanks, it looks like the SQL syntax sees the \ as marking an escaped character, so it matches \# before the CFML syntax can match the #. I think I should be able to do something about this.
When using the following code in a .cfm file, the color formatting gets confused by the use of '#' within the SQL statement and doesn't match it to the second one.
The text was updated successfully, but these errors were encountered: