Ask a Jedi - Issue with single quotes in a query
Alex had a problem with his SQL. This is actually a frequently asked question and I've covered it here before (I think so anyway), but I thought I'd mention it again. It comes up from time to time as people forget. Anyway - his question:
I'm using a web service to retrieve zip codes within a given radius from another zip code. The service sends me back a string that is formatted to use in a SQL WHERE clause:xxx="10001" or xxx="10002" or xxx="10003" ...
I am using MySQL as the DB and the double quotes in the return string above won't work in the WHERE clause, so I am using a simple CF replace() function to replace the double quotes with single quotes (the zip field in my DB is setup as a string) for processing. For some reason, after I replace the quotes, the SQL statement in my CFQUERY tag includes the double quotes again! I can't figure out why this is happening.
There is a simple explanation for this. ColdFusion auto escapes single quotes. Why? Imagine you have a search for, and a user searches for "Ray's Hotness is greater than Paris Hilton". Your sql could do:
where name like '#form.search#'
(Although hopefully you would use cfqueryparam instead.) As you can see - the single quote in my search would break.
So in cases where you need a single quote to be left alone, you tell ColdFusion to stop that change with the preserveSingleQuotes function:
where whatever = #preserveSingleQuotes(somefunc)#
Comments
Having the service give you SQL isn't that bad but I would prolly take the string they give me, parse it into a structure/array and then use queryparams. Queryparams are more then just a security measure (although this is the most vital reason to use them). I'm not going to go into that, there are a great many articles out there on the subject.
According to CFMX documentation, you cannot use the cfquery cachedAfter or cachedWithin attributes with cfqueryparam.
So if you want to use cfqueryparam, you can't cache the query results.
Is there a good online resource for identifying the subtle differences and bugfixes between each CF version?
Also, on the topic of CFQUERY, if you are using a UDF to perform any modifications to the data, I've found that CF7 throws an error when combined with preservesinglequotes(). We've had to perform variable modifications separate from the query. This may be fixed in CF8 too... but I don't know because I'm not using it yet.
10001,10002,10003,...
and then put this in your query:
xxx IN (<cfqueryparam list="YES" type="CF_SQL_VARCHAR" value="#YourList#" NULL="#NOT Len(YourList)#">)
It would do the same thing and be more secure.

