I am using MySQL workbench to create database from EER diagram (forward engineering), and want to load data from a text file to my table
load data infile 'c:\\actors.txt' ignore into table actors field terminated by '\t';
the file contains European characters. I have tried utf16,utf8,latin1,latin2 character sets for my database but still receiving error incorrect string value '\xE4vel'. I have dropped schema and created each time with different character set (all tables have correct collate according to character set). my os is windows7 64bit if it makes any difference! any one can help me. thanks