Tried to import from csv data. Separated with ";".
Data example: CSV:
title; new title; one, two, three; some data, data, more data
title2; new title2; one2, two2, three2; some data2, data, more data
The import command line is:
mongoimport --db db_name --collection the_collection --type csv --file CSV_FILE.csv --fields field1, field2, field3
What am I doing wrong?