Hi,
you could use 

var rs = db.query("select Name,Surname,Address from Person");
for(i=0;i<rs.length;i++){
 var record=rs[i];
  var Name=record.field("Name");
  var Surname=record.field("Surname");
  var Address=record.field("Address");
}


Best 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