Characters like ë, ô, etc.
Moderator: jr
-
- Posts: 1
- Joined: Fri Oct 01, 2010 11:48 am
Characters like ë, ô, etc.
I did not find any answers on questions put at the forum about, what I call, "strange characters" (spanish, russian, etc). Does anybody know how to deal with this problem in Access to mySQL ? Thank you very much !!!
Re: Characters like ë, ô, etc.
Have you tried to select the Unicode feature on the last page of the wizard?
regards,
Jacob
regards,
Jacob
Re: Characters like ë, ô, etc.
I am wondering about this as well. I have tried the Unicode feature but find that I still get "Vieux Carré" instead of "Vieux Carré". Anyone know of a solution?
Re: Characters like ë, ô, etc.
In fact, the text file that "Access to MYSQL" generates is correctly coded in UTF-8 and it contains all the correct accents.
You can check this by opening it in Notepad (maybe you need to specify the encoding in the File Open dialog).
I think your problem is that you didn't specify the correct character set when running the generated script.
This should do the trick:
1. Open a dos box
2. make sure mysql.exe is in your PATH
3. run the following command:
mysql --password=root --user=root --default_character_set=utf8 < dump.sql
This assumes the SQL statements are in a file called 'dump.sql'
hope this helps,
You can check this by opening it in Notepad (maybe you need to specify the encoding in the File Open dialog).
I think your problem is that you didn't specify the correct character set when running the generated script.
This should do the trick:
1. Open a dos box
2. make sure mysql.exe is in your PATH
3. run the following command:
mysql --password=root --user=root --default_character_set=utf8 < dump.sql
This assumes the SQL statements are in a file called 'dump.sql'
hope this helps,