user6366980
user6366980

Reputation: 11

Access to the shell command prompt in NEO4J CE 3.0

I am a "not familiar with programming" neo4j CE user. Nevertheless i used to create the database in NEO4J CE 2.3 by accessing to the command prompt via the options menu in NEO4J desktop interface, running the following command: neo4jshell -file c:/users/bg/database/bg3_data/script.cql where script.cql enable to create the database using multiple LOAD CSV commands.

Despite my research i did not find the way to do it with a similar method in neo4j 3.0.CE

Thank you for your help.

Upvotes: 1

Views: 667

Answers (2)

felixr
felixr

Reputation: 1

For me it was possible to access the Neo4j Shell by running CMD, then change directory to the Folder where Neo4j is installed

cd "Program Files\Neo4j CE 3.0.4"

then run the command

java -classpath bin\neo4j-desktop-3.0.4.jar org.neo4j.shell.StartClient

hope this helps.

Upvotes: 0

Michael Hunger
Michael Hunger

Reputation: 41686

To use neo4j-shell, you have to download the TAR/ZIP distribution from: http://neo4j.com/download/other-releases/

Or use a tool like: http://www.lyonwj.com/LazyWebCypher/

Or a different shell:

Upvotes: 1

Related Questions