Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
05-24-2021 11:42 PM
To import a csv I used:
//Import csv
LOAD CSV FROM 'file:///spm.csv' AS line FIELDTERMINATOR ';'
CREATE
(:RED{ name: line[0], creationTime:timestamp()})
But since I am unlucky and live in a country with these letters: æ,ø,å (utf-8) I have not been able to import text correctly - see picture.
So how do I import a CSV and the scandinavian letters into the database?
05-25-2021 12:29 AM
Hello @VilladsClaes
Can you check if the strings have the correct format in the CSV file?
Regards,
Cobra
05-25-2021 11:48 AM
E.g., try using an UTF-8 checker like: Validate UTF8 - Online UTF8 Tools
Or see: validation - How to check whether a file is valid UTF-8? - Stack Overflow
You might have to convert whatever format you have to UTF-8.
The question mark often means that the code displaying the characters found something unexpected (e.g. violates UTF-8 format), so it gave up and put in diamond ?
08-06-2021 03:28 AM
Thank you for the link to the UTF-8 checker tool.
The CSV passed the test
All the sessions of the conference are now available online