Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Color-coded formatting lost when using '\#' in <cfquery> #70

Closed
mrlife opened this issue Apr 4, 2017 · 1 comment
Closed

Color-coded formatting lost when using '\#' in <cfquery> #70

mrlife opened this issue Apr 4, 2017 · 1 comment

Comments

@mrlife
Copy link

mrlife commented Apr 4, 2017

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>
@jcberquist
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants