![]() |
![]()
| ![]() |
![]()
NAMEDBIx::Dump - Perl extension for dumping database (DBI) data into a variety of formats. SYNOPSISuse 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(); DESCRIPTIONDBIx::Dump allows you to easily dump database data, retrieved using DBI, into a variety of formats including Excel, CSV, etc... EXPORTNone by default. AUTHORIlya Sterin<lt>isterin@cpan.org<gt> SEE ALSOperl. DBI.
|