Querylet::Output::Text - output querylet results to text tables


Querylet-Output-Text documentation  | view source Contained in the Querylet-Output-Text distribution.

Index


NAME

Top

Querylet::Output::Text - output querylet results to text tables

VERSION

Top

version 0.112

 $Id: /my/cs/projects/q/text/trunk/lib/Querylet/Output/Text.pm 28174 2006-11-16T13:38:21.823039Z rjbs  $

SYNOPSIS

Top

 use Querylet;
 use Querylet::Output::Text;

 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: text

DESCRIPTION

Top

This module registers an output handler to produce plaintext tables, using Text::Table.

default_type

The default type for Querylet::Output::Text is "text"

handler

The output handler uses Text::Table to print a simple table, suitable for reading at the console.

AUTHOR

Top

Ricardo SIGNES, <rjbs@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-querylet-output-text@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT

Top


Querylet-Output-Text documentation  | view source Contained in the Querylet-Output-Text distribution.