package com;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Relationship;
import org.neo4j.graphdb.RelationshipType;
import org.neo4j.kernel.EmbeddedGraphDatabase;
import org.neo4j.graphdb.Transaction;
public class hotspots {
public static enum RelTypes implements RelationshipType
{
PERSON
}
public static void main(String[] args) {
GraphDatabaseService graphdb = new EmbeddedGraphDatabase("target/dbnew");
Transaction tx = graphdb.beginTx();
try{
Node n1 = graphdb.createNode();
Node n2 = graphdb.createNode();
n1.setProperty("name","Melwin");
n2.setProperty("name","Louis");
Relationship rel1 = graphdb.getReferenceNode().createRelationshipTo( n1, RelTypes.PERSON );
Relationship rel2 = graphdb.getReferenceNode().createRelationshipTo( n2, RelTypes.PERSON );
tx.success();
}
catch (Exception e) {
tx.failure();
}
finally{
tx.finish();
}
graphdb.shutdown();
System.out.println("Success");
}
}
this is a small database tat i created...and i view it in neoclipse...each time i run this code and view it in neoclipse...i get double the nodes n relationships...i.e. i get two more nodes with d same name & relationship..... i'm workin on an important project and need help asap... so guys plz help me!!!