I am just starting out with Neo4j and this is my first stackoverflow question!
I tried to run the Hello-World example in Eclipse with the user library of Neo4j. ( https://github.com/neo4j/neo4j/blob/2.2.2/community/embedded-examples/src/main/java/org/neo4j/examples/EmbeddedNeo4j.java)
I only changed the DB_PATH='data/graph.db' ( because in my neo4j-server.properties :org.neo4j.server.database.location=data/graph.db)
The output I got in the console is:
Hello, brave Neo4j World! Shutting down database ...
I shut down the neo4j server using /etc/init.d/neo4j-service stop, then ran eclipse and got the output as provided above.I started the neo4j server again and checked localhost:7474 through the browser. There were no rows added to the database.
Is there an error in my DB_PATH? I even tried neoeclipse but did not get any output.