[Neo4j] Saving indexes in neo4j.py

2010-09-17 Thread Francois Kassis
Hi all, I create a new database neodatabse using neo4j python version. #create new databse graphdb = neo4j.GraphDatabse(neodatabse) graphdb.shutdown() Then re open it in other function and added some nodes and indexes #open databse graphdb = neo4j.GraphDatabse(neodatabse) try: tx =

Re: [Neo4j] Saving indexes in neo4j.py

2010-09-17 Thread Francois Kassis
Ups sorry it's my mistake. actually it was tx.success() instead of tx.finish() and still everything is save but the indexes. From: Francois Kassis Sent: Friday, September 17, 2010 12:20 PM To: user@lists.neo4j.org Subject: Saving indexes in neo4j.py Hi all, I create a new database