In java graph api if I create a vertex and set some properties ...
OrientVertex vertex = graph.addVertex("class.MyClass");
vertex.setProperties(propMap);
graph.commit();
then in another transaction get the same vertex and modify properties ...
vertex.setProperties(modPropMap);
vertex.save(); //??
graph.commit();
Why is the save() required? setProperty calls the save() for you.
--
---
You received this message because you are subscribed to the Google Groups
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.