The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Mojolicious::Plugin::SQLiteViewerLite

  Mojolicious plugin to display SQLite database information on browser

SYNOPSYS

  # Mojolicious::Lite
  plugin 'SQLiteViewerLite', dbh => $dbh;

  # Mojolicious
  $app->plugin('SQLiteViewerLite', dbh => $dbh);

  # Access
  http://localhost:3000/sqliteviewerlite
  
DESCRIPTION

  Mojolicious::Plugin::SQLiteViewerLite is Mojolicious plugin
  to display SQLite database information on browser.

  This module have the following features.

    - Display all table names
    - Display show create table
    - Select * from TABLE
    - Display primary keys and null allowed columnes in all tables.