Thanks Artem,
   the only changes I had to fix in my app were the following.

1) Given the query:
SELECT @rid as rid FROM MyClass
Old code:
ODocument rid = (ODocument) vertex.field("@rid");
map.put("rid", OridConverter.oridToCustomId(rid.getIdentity()));

New code:
ORID rid = (ORID) vertex.field("@rid");
map.put("rid", OridConverter.oridToCustomId(rid.getIdentity()));

2) Executing with the new version a OSQL query with an empty WHERE clause 
gives an exception (while in the previous version everything went ok):
SELECT FROM MyClass WHERE

No problems for now.

Cheers,
   Riccardo

-- 

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