DBIx-HTML
SQL queries to HTML tables.
See DBIx::HTML and Spreadsheet::HTML for more information.
ALPHA RELEASE
While most functionality for this module has been completed, testing has not. This module has a strong dependency on Spreadsheet:HTML which currently is also an alpha release. (https://github.com/jeffa/Spreadsheet-HTML)
See DBIx::XHTML_Table if you need a production ready solution and check back soon.
Synopsis
use DBIx::HTML;
my $table = DBIx::HTML->connect( @db_credentials );
$table->do( $query );
print $table->generate;
# stackable method calls:
print DBIx::HTML
->connect( @db_credentials )
->do( 'select foo,baz from bar' )
->generate
;
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.