in reply to Choosing a database for a new project

My recommendation: use a real SQL database if it's available. You'll need to write some administration scripts for easy manipulating the database, but that's not too hard (Maybe only submitting raw SQL Queries to the database).

Working with databases is extremely easy with Perl, thanks to the DBI. The DBI manpage is at least a good tutorial on the module only. I've read "Programming the Perl DBI", so I'm unable to give you other ressources, for i've never needed any apart from the book and the manpage...

Some more Pros for mySQL:

--
http://fruiture.de
  • Comment on Re: Choosing a database for a new project

Replies are listed 'Best First'.
Re: Re: Choosing a database for a new project
by signal9 (Pilgrim) on Oct 16, 2002 at 13:52 UTC

    When I was hired for my first Perl job, I only knew what SQL looked like -- not how to use it. Within a couple of days, I was up to speed enough to pull reports from Oracle, MySQL, and that other proprietary database, all using Perl's DBI. The SQL language is very straightforward, making it possible for absolute novices to get things done now and save the subtleties for later.

    Wasn't it Larry himself who said, "What you don't know won't hurt you... much?"