in reply to XML::XQL examples

From now on, please use < code> and </code> tags to enclose your program.
For example, your would look like the following if you put it in the above tags:
#!/usr/bin/perl use XML::XQL; use XML::XQL::DOM; use Data::Dumper; $parser = new XML::DOM::Parser; $doc = $parser->parsefile ("bookstore.xml"); $query = new XML::XQL::Query (Expr => "//first-name"); @result = $query->solve ($doc); $query->dispose; print Data::Dumper->Dump(@result);

TStanley
In the end, there can be only one!

Replies are listed 'Best First'.
Re: Re: XML::XQL examples
by drfrog (Deacon) on Jan 24, 2001 at 07:35 UTC
    yah i saw that after words
    
    is there any way to reedit?
    
    i guess previewing carefully
    would a been better
    :)
    
    
      If you are logged in, click here and there should be an edit box at the bottom of the page where you can change your post...

      --
      $you = new YOU;
      honk() if $you->love(perl)

        nope,
        
        no edit box that i can see
        this only happens in top level message 
        this one i could re edit
        
        on to the topic at hand i ve also found
        XML::QL by Matt S. 
        which works a lot nicer 
        out of the gate
        
        oracles XSQL is what i think im heading towards
        
        http://technet.oracle.com/tech/xml/xsql_servlet/htdocs/relnotes.htm
        
        seems to be more of what i want
        but there is no modules avail yet
        
        
        anyone?