Help for this page

Select Code to Download


  1. or download this
    my $sql = SQL::Abstract->new;
    
    ...
             while (my $row = $sth->fetchrow_hashref ){
                     >>>>>>WHAT DO I DO HERE FOR XML????>>>>
             }
    
  2. or download this
            $sth->execute();
    
    ...
            print "<dataset name=\"$hdr\">\n";
            print @output;
            print "</dataset>";
    
  3. or download this
    my $row = $sth->fetchrow_hasharray;