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


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

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 :)

Replies are listed 'Best First'.
Re^5: Writing a database lookup tool
by elef (Friar) on Jan 20, 2013 at 15:57 UTC
    "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.