我正在尝试使用Id,Type,Artist,netWorth将文件加载到Neo4j作为标题来创建节点。
这是我给出的命令:
LOAD CSV WITH HEADERS FROM "file:///C:/Neo4jFiles/VerticesArtistsById.csv" AS csvLine
CREATE (p:Artist { id: toInteger(csvLine.Id), name: csvLine.Artist, netWorth: csvLine.netWorth})
我正在Neo.ClientError.Statement.ExternalResourceFailed
- Couldn't load the external resource at: file:/C:/Users/ComputerName/Desktop/neo4j/import/Neo4jFiles/VerticesArtistsById.csv
知道为什么吗?