Hello everyone,
I am very very new to Neo4j and OOP, I am working on a project using
Neo4j system. I have already uploaded my RDF data into Neo4j using the
following code (snippet)
....
Neo4jGraph neo = new Neo4jGraph("dataset");
Sail sail = new GraphSail(neo);
sail.initialize();
CommitManager manager =
TransactionalGraphHelper.createCommitManager(neo, 100000);
SailConnection sc= sail.getConnection();
for (String file: args) {
System.out.println("Loading " + file + ": ");
loadFile(file, sail.getConnection(), sail.getValueFactory(),
manager);
System.out.print('\n');
}
....
I now want to write write a separate code to make my connection with the
already created RDF store using Sail, I am confused about how I can make
this connection without creating any new store..Kindly throw some light on
this, I am stuck very badly..Thanks in advance..
--
View this message in context:
http://neo4j-community-discussions.438527.n3.nabble.com/RDF-querying-tp3290725p3290725.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
_______________________________________________
Neo4j mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user