The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Querylet::Output::Excel::XLS - output querylet results to an Excel file

VERSION

version 0.134

SYNOPSIS

 use Querylet;
 use Querylet::Output::Excel::XLS;

 database: dbi:SQLite2:dbname=cpants.db

 query:
   SELECT kwalitee.dist,kwalitee.kwalitee
   FROM   kwalitee
   JOIN   dist ON kwalitee.distid = dist.id
   WHERE  dist.author = 'RJBS'
   ORDER BY kwalitee.dist;

 output format: xls
 output file:   cpants.xls

DESCRIPTION

This module registers an output handler to produce excel files, using Spreadsheet::WriteExcel.

METHODS

default_type

The default type for Querylet::Output::Excel::XLS is "xls"

handler

The output handler uses Spreadsheet::WriteExcel to produce an Excel "xls" file.

AUTHOR

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2004 by Ricardo SIGNES.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.