Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
doc
/
perl-DBIx-XHTML_Table
Upload
4 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
Changes
5.93 KB
-rw-r--r--
2017-01-04 19:39:45
Edit
Del
readme.md
1.51 KB
-rw-r--r--
2017-01-04 19:39:45
Edit
Del
Editing: readme.md
(1.51 KB)
Path: /usr/share/doc/perl-DBIx-XHTML_Table/readme.md
Back
DBIx::XHTML_Table ================= Create HTML tables from SQL queries. [](https://metacpan.org/pod/DBIx::XHTML_Table) [](https://travis-ci.org/jeffa/DBIx-XHTML_Table) Synopsis -------- ```perl use DBIx::XHTML_Table; # database credentials - fill in the 'blanks' my @creds = ($data_source,$usr,$pass); my $table = DBIx::XHTML_Table->new( @creds ); $table->exec_query(q( select foo from bar where baz='qux' order by foo )); print $table->output; # stackable method calls: print DBIx::XHTML_Table ->new( @creds ) ->exec_query( 'select foo,baz from bar' ) ->output; ``` Installation ------------ To install this module, you should use CPAN. A good starting place is [How to install CPAN modules](http://www.cpan.org/modules/INSTALL.html). 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 ------------------------- * perldoc [DBIx::XHTML_Table](/lib/DBIx/XHTML_Table.pm) * [Tutorial](http://www.unlocalhost.com/XHTML_Table/tutorial.html) * [Cookbook](http://www.unlocalhost.com/XHTML_Table/cookbook.html) * [FAQ](http://www.unlocalhost.com/XHTML_Table/FAQ.html) Author ------ Jeff Anderson License & Copyright ------------------- See [source POD](/lib/DBIx/XHTML_Table.pm) for license and copyright information.