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

NAME

AddressBook::DB::Text - Backend for AddressBook to print entries in a simple text format

SYNOPSIS

  use AddressBook;
  $a = AddressBook->new(source => "Text",filename=>"/tmp/abook.text");
  $a->write($entry);

DESCRIPTION

AddressBook::DB::Text currently supports only the sequential write method.

new

  $a = AddressBook->new(source => "Text");
  $a = AddressBook->new(source => "Text",filename => "/tmp/abook.text");

If no filename parameter is specified in the constructor, or in the configuration file, STDOUT is used.

AUTHOR

Mark A. Hershberger, <mah@everybody.org> David L. Leigh, <dleigh@sameasiteverwas.net>

SEE ALSO

AddressBook, AddressBook::Config, AddressBook::Entry.