Reputation: 531
I have created nodes and relationships in java using Neo4j jars,I am trying to display the same from Neoclipse, I am getting Exception when trying to create connection from Neoclipse to the folder created by java program (I am using windows 7) . Exception:
java.lang.IllegalStateException:Mismatching store version found(v0.A.1 while expecting v0.A.0)
and the store is not cleanly shutdown.
Recover the database with previous database version and then attempt to upgrade .
after this i added graphDb.shutdown();
code then i got different exception:
org.neo4j.kernel.impl.storemigration.StoreUpgrader$UnableToUpgradeException:
Not all store Files match the version required for successful upgrade.
List of jar Files:
geronimo-jta_1.1_spec-1.1.1.jar lucene-core-3.6.2.jar neo4j-2.0.1.jar neo4j-cypher-2.0.1.jar neo4j-graph-algo-2.0.1.jar neo4j-graph-matching-2.0.1.jar neo4j-jmx-2.0.1.jar neo4j-kernel-2.0.1.jar neo4j-lucene-index-2.0.1.jar neo4j-udc-2.0.1.jar
Please guide me.
Upvotes: 1
Views: 826
Reputation: 39925
It looks like you've created your datastore with Neo4j 2.0.1. Neoclipse seems to use an earlier version. Datastore downgrades are not supported.
However you could drop your database into a Neo4j 2.0.1 server and connect to it remotely using Neoclipse.
Upvotes: 2