It works fine to me. Simply download neo4j community edition 2.1.2 and untar it where you prefer. > cd /your_path/neo4j-community-2.1.2/bin > ./neo4j start
http://localhost:7474 # LOAD CSV WITH HEADERS FROM " http://docs.neo4j.org/chunked/2.1.2/csv/import/persons.csv" AS csvLine CREATE (p:Person { id: toInt(csvLine.id), name: csvLine.name }) You should get: Added 5 labels, created 5 nodes, set 10 properties, returned 0 rows in 1409 ms Could you please post your log file? Il giorno venerdì 20 giugno 2014 13:07:35 UTC+2, gg4u ha scritto: > > Hi, > > I've just installed commuity release 2.1.2. > Java is updated to 7. > using a macbook, start the server: > bin/neo4j start > > The error I get is, for almost every query: > "Unknown error An unknown error occurred, was unable to retrieve a result > for you." > > I tried to copy paste from tutorial site: > LOAD CSV > WITH HEADERS FROM " > http://docs.neo4j.org/chunked/2.1.2/csv/import/persons.csv" AS csvLine > CREATE (p:Person { id: toInt(csvLine.id), name: csvLine.name }) > > and get the above error; > > I tried to create a node: > > CREATE (n:Actor { name:"Tom Hanks" }); > > and get: > > *Invalid query* > > Unclosed parenthesis > "CREATE (n:Actor { name:"Tom Hanks" });" > ^ > > I read thread https://groups.google.com/forum/#!topic/neo4j/I2MtzswLLy0 > > but have not found helpful for my case. > > > what am i doing wrong? > > -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
