[orientdb] Re: [Problem] [First Try] reloading objects java

2015-06-01 Thread jean safar
Hi Alessandro, Thanks a lot for this. Should I understand that the accessors only are instrumented ? When are the variables actually bound to the values? Isn't it a problem when trying to take a system and use OrientDB on existing classes that use variables internally and not accessors direct

[orientdb] Re: [Problem] [First Try] reloading objects java

2015-06-01 Thread alessandrorota04
Hi Jean, try this code in the class ObjectStorer OObjectIteratorClass i = tx.browseClass(Order.class) ; for (Order or : i){ or.getName(); List listOrderItem=or.getItems(); for(OrderItem it:listOrderItem){ it.getName(); it.getId(); it.getValue(); } System.out.println (or); } Bye, Alessandro Il g