I need to store (possibly long) text in a MySQL database. The text may contain special characters and non-latin letters and it should be possible to perform full-text-search on it. MySQL 5 can't store such characters (but it will be possible in MySQL 6), so I though about URL-encoding the text before storing it and decoding it after fetching it. Do you think it is a good idea? Did anyone do something like that? Do you have alternative solutions?
|
|
Why not use Unicode, encoded with UTF8 - MySQL 5 supports it |
||||
|
|
|
Not a bad idea. Rather than (only) decoding after fetching, you should also plan for a process to url-encode any search terms prior to building the search query. If your app-side logic has usage functions which filter all data through the encoding/decoding process, then you shouldn't have any misusage slip through the cracks. Also, is it possible that a VARBINARY data type would dodge the problem? (I could Google this part myself, but it's late and I'm sleepy. Just helping brainstorm, bedtime now.) |
||
|
|
|
MySQL's Unicode full text search is smart enough to search for related characters like "á" and "ä" when searching for "a". So, I'd not store URL encoded text, but use MySQL's options. |
||
|
|
