Hi, try this code

OrientGraphFactory ogf = new OrientGraphFactory(
 "plocal:/home/paulkalkbrenner/Dokumente/odb/databases/ConnectER", "admin", 
"admin");
    OrientGraph og = ogf.getTx();
 
 OClass cl=og.createVertexType("Person", "V");
 cl.createProperty("LastName", OType.STRING);


 OrientVertex v1=og.addVertex("class:Person");
 v1.setProperties("Lastname","Alessandro");


 for (Vertex v : og.getVertices()) {
 System.out.println(v.getProperty("Lastname"));
 }
 
 og.shutdown();

Kind regards,
Alessandro

-- 

--- 
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.

Reply via email to