Linking MySQL to Access cyrillic problem

A

ANSWER

Hi,

I installed mysql-connector-odbc-3.51.14-win32 and then I connected to my
database. The problem occured because I have Cyrillic letters in MySQL
database and the data I see in Access is illegible, and those signs can't be
read or understood.

How can I solve this situation

Thanks
 
S

Sylvain Lafontaine

I don't know much about MySQL but usually, the first cause for this kind of
problem is because you didn't use an Unicode enabled field on the database;
ie. you are using fields of type char, varchar and text instead of using
nchar, nvarchar and ntext.
 
Top