-
-
25 Oct 2002 15:10:14 UTC
- Distribution: DBIx-Dump
- Module version: 0.04
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (4)
- Testers (416 / 0 / 2)
- Kwalitee
Bus factor: 0- 44.44% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (3.36KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
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>
SEE ALSO
Module Install Instructions
To install DBIx::Dump, copy and paste the appropriate command in to your terminal.
cpanm DBIx::Dump
perl -MCPAN -e shell install DBIx::Dump
For more information on module installation, please visit the detailed CPAN module installation guide.