Hello,
I a wondering if there is a way to search for foreign characters in a DB, so for example if someone is searching for Côte d'Azur, but a user with an English keyboard may type in Cote D'Azur, is there a simple way to query the DB by switching the foreign characters please?
Thanks!
Here are the possible collations: http://msdn.microsoft.com/en-us/library/ms144250.aspx
Here is how you change it for the query: http://msdn.microsoft.com/en-us/library/ms184391.aspx
You probably want Latin1_General_CI_AI which means uses the Latin1 character set CI = Case Insensitive and AI = Accent Insensitve.