Could someone show me, how this script would look like, when written with Mojolicious::Plugin::Database?

#!/usr/local/bin/perl
use warnings;
use 5.014;
use utf8;
use Mojolicious::Lite;
use DBI qw(:sql_types);
use HTML::Table::FromDatabase;

my $dbh = DBI->connect( "DBI:SQLite:dbname=database_db", "", "", 
{ RaiseError => 1, AutoCommit => 1, sqlite_unicode => 1 } ) or die $DBI::errstr;
$dbh->do("PRAGMA cache_size = 400000");
$dbh->do("PRAGMA synchronous = OFF");

get '/database' => sub {
    my $self = shift;
    my $sth = $dbh->prepare( "SELECT * FROM table_name" );
    $sth->execute();
    my $t = HTML::Table::FromDatabase->new( -sth => $sth, -border => 1 );
    my $table = $t->getTable();
    $self->stash( table => $table );
    $self->render( 'database' );
};

app->start;

__DATA__
@@ database.html.ep
<!doctype html>
<html>
<head><title>Test</title><meta charset="UTF-8"></head>
<body>
%== $table
</body>
</html>
link|improve this question

-1: Not really a question.. more of a please-do-my-work-for-me type of deal – Øyvind Skaar Aug 15 '11 at 8:44
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.