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

NAME

Querylet::CGI::Auto - run a querylet as context suggests

VERSION

version 0.143

SYNOPSIS

 use Querylet;
 use Querylet::CGI::Auto;
 use Querylet::Output::Text;

 query:
   SELECT firstname, age
   FROM people
   WHERE lastname = ?
   ORDER BY firstname
 
 input type: auto
 output format: text

 input: lastname

 query parameter: $input->{lastname}

DESCRIPTION

Querylet::CGI::Auto registers the "auto" input handler, which will use "cgi" if the GATEWAY_ENVIRONMENT environment variable is set, and "term" otherwise. Since Querylet::CGI will set the output format on its own, the output format should be set to the type to be used if running outside of a CGI environment.

METHODS

default_type

Querylet::CGI::Auto acts as a Querylet::Input module, and registers itself as an input handler when used. The default type to register is 'auto'

handler

The default registered handler will (ack!) use magic goto to switch to the correct handler, based on the environment.

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.