Hi,
you can use getProperty("yourproperty")

Example

var g=orient.getGraph();
var b=g.command("sql","select from persona");
for(i=0;i<b.length;i++){
 var record=b[i];
  var id=record.getId();
  var name=record.getProperty("name");
  print(id + name);
}

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