Bind a Java Collection to xQuery sequence from xQuery
Posted
by jtzero
on Stack Overflow
See other posts from Stack Overflow
or by jtzero
Published on 2010-02-16T20:48:44Z
Indexed on
2010/03/28
19:33 UTC
Read the original article
Hit count: 510
declare function Error:toString($this as javaObject) as xs:string external;
the previous binds a return String() to xs:string. is it possible to return a collection and bind it to an xQuery Sequence, say the following
declare function Error:toList($this as javaObject) as squenceType external;
so that it can be run through a flwr?
© Stack Overflow or respective owner