Not sure if the result would be good in your case but instead of mapping 
european words, I would start and just strip out characters with european 
meaning. E.g. if the server receives "francais" as search string I would 
replace "c" with "_" because "c" can be a special european character and 
then do a query like SELECT x FROM y WHERE z LIKE 'fran_ais'. Underscore 
means "matches exactly one character". Obviously the query could return 
false positives, but its a bit more generic than having a word mapping and 
the result could be good enough.

-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ngzJMzrXCjgJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to