System.out.println( "Starting store: createTime=" + new Date( store.getCreationTime() ) +
" identifier=" + store.getStoreId() + " last committed tx=" + store.getLastCommittedTx() );
GraphDatabaseService db = startDb();
System.out.println( "Waiting for ENTER (for clean shutdown)" );
System.in.read();
db.shutdown();
// doStuff( db );
}
private static GraphDatabaseService startDb() throws IOException
{