http://www.perlmonks.org?node_id=1011771


in reply to Re: Writing a database lookup tool
in thread Writing a database lookup tool

sqlite3 -- don't mess with sqlite2

Replies are listed 'Best First'.
Re^3: Writing a database lookup tool
by Shuraski (Scribe) on Jan 06, 2013 at 04:20 UTC

    Why not spend some time familiarizing yourself with Catalyst or Dancer, and learn some MySQL? Using the DBI for MySQL it turns out isn't all that much more work than messing with SQLite...

      Why not spend some time familiarizing yourself with Catalyst or Dancer, and learn some MySQL? Using the DBI for MySQL it turns out isn't all that much more work than messing with SQLite...

      Why assume I'm not familiar with mysql?

      Who wants to manage deploying mysql (in addition to perl) on every target plaform , instead of DBD::SQLite?

      Mind you, I'm not the OP :)

        "Who wants to manage deploying mysql (in addition to perl) on every target plaform , instead of DBD::SQLite?"

        That's my thinking as well. So far, it looks like DBD::SQLite can do all the database stuff I need, Tk should take care of the GUI, and with pp, I will be able roll the whole thing up into a single .exe that doesn't require installation, doesn't have any dependencies and is less than 10MB in size.