utf 8 - Importing bulk CSV data in UTF-8 into MySQL -
I am trying to import approximately 10K rows of UTF-8 encoded data into a new MySQL table.
 I can do so successfully with the  load data INFILE  via the MSQL workspace but the UTF-8 characters are inverted. I have tested the database otherwise via PHP And this store fixes UTF-8 charaters. The problem seems to be with  load data INFILE , and I've come to some sources about it. 
Does anyone know an alternative solution, or perhaps another easy way to import CSV data?
Thank you.
Resolved:
 Those who see it and who have the same problem, just add characters  LOAD DATA INFILE  Set as the parameter while running, I have easily realized :) According to 
, you < Code> CHARACTER SET input parameters to provide the character set parameter in your description.
 Have you tried making the  'utf8'  as an input code set? 
Comments
Post a Comment