Query with special characters
I am having a problem returning results that include special characters. I have a list of individuals and want to allow an alpha select to display, for example, only the individuals who's last name starts with C.
I have an individual in this list who's last name is Čapek
When I do a mySQL query in mySQL Query Browser as follows, this individual is returned in results.
SELECT distinct
last_name
FROM
individuals
WHERE
last_name like 'C%'
HOWEVER, when I use the same query in a cfquery, this individual's record is not returned.
I am using mySQL 5 with ColdFusion 9 and have the mySQL connection string settings: useUnicode=true&characterEncoding=UTF-8
Any assistance would be appreciated - I've not found anything useful in my Google searches.
Many Thanks!
