|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] Programmatically constructing sequences ("a", "b", "c") for XQueryMichael Ludwig mlu at as-guides.comMon Aug 10 19:56:08 PDT 2009
Adam Retter schrieb:
> I am not familiar with Berkely XML DB, but I had a quick look through
> the API docs for you. You are correct XMLValue is for expressing an
> atomic type and not a sequence, what you need is XmlResults which can
> be used for expressing a sequence of XMLValue.
>
> XMLResults myFiles = XMLManager.createResults();
> myFiles.add(new XMLValue("value1"));
> myFiles.add(new XMLValue("value2"));
> xqc.setVariableValue("files", myFiles);
Adam and George, thanks for doing my homework!
XmlResults values = mgr.createResults();
values.add(new XmlValue("value1"));
values.add(new XmlValue("value2"));
xqc.setVariableValue("files", values);
Works perfectly.
--
Michael Ludwig
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






