in reply to Using the result from XML::XQL::solve

XQL is one of those things that seemed like a good idea at the time, but it never really caught on. I don't think I've heard of anyone using it for about three years (which ties in with the date of the last release of XML::XQL).

It sounds to me like you should really think about using XPath instead.

But to answer your original question, solve returns a list of all of the nodes in your document which match your XQL query.

--
<http://dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg

  • Comment on Re: Using the result from XML::XQL::solve

Replies are listed 'Best First'.
Re^2: Using the result from XML::XQL::solve
by adrianxw (Acolyte) on Oct 28, 2006 at 15:13 UTC
    I have replaced the XML::XQL with XML:XPath. The application is complete and working. Thanks for the steer.