Read a CSV File

HI All,

I have a requirement to process a CSV file to my database. i have used a smart service(Export CSV to Database) from Excel Tools plugin. But some of the special characters are not read properly.
For example: 

The data i have received in CSV has : ~@ö<é;ó¿üäÖÇ*àÄ=É!"ѧæñ á½èçòíê°

after consuming the file i have got this in my database : ~@�<�;�����*��=�!"ѧ��������

Can anyone suggest if we have any alternative options for this please.

Thanks,
Sai Kiran Pannala.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to nksnksnks

    That is a very common problem with CSV files. There is no defined standard.

    If your file is on the smaller side, you could try to use the "text file reader" plugin to read and parse that file manually.

    If you have a larger file, you could try to use another plugin to first convert that CSV into JSON and back to CSV. This way it could be more uniform.

Children