Skip to content

Just another HTML table generating DBI extension.

Notifications You must be signed in to change notification settings

jeffa/DBIx-HTML

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DBIx::HTML

Just another HTML table generating DBI extension. CPAN Version

See DBIx::HTML and Spreadsheet::HTML for more information.

Synopsis

use DBIx::HTML;

my $generator = DBIx::HTML->connect( @db_credentials );
$generator->do( $query );

# supports multiple orientations
print $generator->portrait;
print $generator->landscape;

# stackable method calls:
print DBIx::HTML
    ->connect( @db_credentials )
    ->do( 'select foo,baz from bar' )
    ->landscape
;

# rotating attributes:
print $generator->portrait( tr => { class => [qw( odd even )] } );

Installation

To install this module, you should use CPAN. A good starting place is How to install CPAN modules.

If you truly want to install from this github repo, then be sure and create the manifest before you test and install:

perl Makefile.PL
make
make manifest
make test
make install

Support and Documentation

After installing, you can find documentation for this module with the perldoc command.

perldoc DBIx::HTML

You can also find documentation at metaCPAN.

License and Copyright

See source POD.

About

Just another HTML table generating DBI extension.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages