Re: MYSQL doesn't 'see' accents
Posted by: Evi Wool
Date: June 26, 2010 06:12AM

I've looked into this further. The problem is more than I thought.
I used Load Data to import a text file where some of the text contained é. I checked the Notepad file and the accented words displayed correctly in the text file but when the text file was imported, each é was shown Ú, ç was displaced as c, è was displayed as þ
Here's the code I used to load the text file into the table
LOAD DATA LOCAL INFILE 'C:\\TblEnglish.txt'

INTO TABLE TblEnglish
FIELDS TERMINATED BY '\t'
ENCLOSED BY '"'
LINES TERMINATED BY '\r\n'
(EngID, English);

I am able to type these letters correctly in MySQL (using Alt and the number keypad) and UPDATE the records and they display fine so I don't see how mySQL's character set or the VarChar field datatype can be at fault. Is there a command line I need to change in the LOAD DATA code?

Options: ReplyQuote


Subject
Views
Written By
Posted
5198
June 23, 2010 05:31PM
2152
June 23, 2010 09:34PM
2284
June 24, 2010 12:00AM
2447
June 24, 2010 03:14AM
2215
June 24, 2010 05:59AM
2299
June 24, 2010 04:09PM
Re: MYSQL doesn't 'see' accents
3004
June 26, 2010 06:12AM
2368
June 26, 2010 12:04PM
2478
June 26, 2010 03:34PM
4341
June 26, 2010 06:46PM
2381
June 27, 2010 02:09AM
2279
June 27, 2010 12:48PM
2691
June 27, 2010 11:50PM
2217
June 28, 2010 12:13AM
2305
June 28, 2010 07:59PM
2142
June 28, 2010 09:27PM
2725
June 30, 2010 01:29AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.