Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Modules that significantly contribute to Laziness

by buckaduck (Chaplain)
on May 24, 2005 at 19:30 UTC ( [id://460141]=note: print w/replies, xml ) Need Help??


in reply to Modules that significantly contribute to Laziness

This depends on how you set up your application, but when I have a web-based application with a database backend, I often use Data::Table for maximum laziness. After performing a database query, you can filter, sort, reformat, etc. and then print the resulting data as an HTML table. There are plenty of options for formatting the HTML table nicely.

A lazy example (based on the module's documentation):

use Data::Table; use DBI; my $dbh= DBI->connect("DBI:mysql:test", "test", "") or die $DBI::errstr; my $minAge = 10; my $t = Data::Table::fromSQL ( $dbh, "select * from mytable where age >= ?", [$minAge], ); # Print out an HTML Table. print $t->html;

buckaduck

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://460141]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2024-04-25 20:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found