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>