I am trying to import a csv file (Window 10), created by notepad++, using semicolons as delimiters, extension .csv.
I use Mysql Workbench 6.3, import wizard. Encode in notepad++ is UTF-8, and the mysql table I am trying to load is utf-8 default collation
Import wizard fails to import and shows two messages: Table data Import: Can't analyze the file, please try to change encoding type. If that doesn't help, maybe the file is no: csv, or the file is empty
Unhandled exception: 'ascii' codec can't encode character u'\xfa' in position 1: ordinal not in range (128)
How can I do to trace this error. I tried several encodings for the file, but the error persists.
thanks
ú
? That is whatfa
is in latin1. And unicode 00FA. Something is saying (or defaulting to) latin1 instead of utf8. – Costate