Hi all,
I'm trying to query an XML file that I saved in an Orient db 2.1-rc4. When 
I pass trough the JAVA API it actually works


Here is how I'm getting the binary data currently from the the following 
JAVA / Extend code

queryStr.append("select * from ConfiguratorXmlTemp where refererId=\"");
queryStr.append(creationRefererId)
queryStr.append("\"")
val query2 = new OSQLSynchQuery<ODocument>(queryStr.toString());
results = database.command(query2).execute() as List<ODocument>;

var doc = results.get(0) as ODocument;

doc = results.get(0).field("details") as ODocument;

val xmlFile = doc.field("xmlFile") as ORecordBytes;

*But when I try to query manually, for testing purposes, I cannot get the 
binary data to show either from the console or the studio. *

The I do see that the ORecordByte is stored in the cluster:3, but i'm not 
able to have it print to the screen

Any idea?

-- 

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