NAME
DBIx::Dump - Perl extension for dumping database (DBI) data into a variety of formats.
SYNOPSIS
use DBI;
use DBIx::Dump;
my $dbh = DBI->connect("dbi:Oracle:DSN_NAME", "user", "pass", {PrintError => 0, RaiseError => 1});
my $sth = $dbh->prepare("select * from foo");
$sth->execute();
my $exceldb = DBIx::Dump->new('format' => 'excel', 'ouput' => 'db.xls', 'sth' => $sth, EventHandler => \@handler);
$exceldb->dump();
DESCRIPTION
DBIx::Dump allows you to easily dump database data, retrieved using DBI, into a variety of formats including Excel, CSV, etc...
EXPORT
None by default.
AUTHOR
Ilya Sterin<lt>isterin@cpan.org<gt>