hi i have cretes schema type student
i.e
vertex.createProperty("NAME", OType.STRING);
vertex.createProperty("ID", OType.INTEGER);
vertex.createProperty("ADDRESS", OType.STRING)
and i am inserting data from keyboard suing scanner class
like
Scanner scanner=null;
scanner =new Scanner(System.in);
v.setProperty("NAME", scanner.next());
v.setProperty("ID", scanner.nextInt());
v.setProperty("ADDRESS", scanner.next());
but it taking only on record not multiple record plz help me anyone
--
---
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.