I need to import CSV from a local folder (on my computer) on a server.
First I start the cypher-shell:
cypher-shell.bat -a bolt://<address>:7687 -u user -p secret
That works (I can do any Cypher-operation I want to do).
After that I try to load the data from my local neo4j-installation:
USING PERIODIC COMMIT
LOAD CSV FROM 'C:/Users/.../neo4j-community-3.5.6/import/file.csv' AS line FIELDTERMINATOR ';'
CREATE (:Term { name: line[1], description: line[2]});
I get an error: "unknown protocol: c". So I think, the declaration of the local path is wrong.