Dear Monks,
I am encountering the well known problem of mixing SQL and Perl in a huge codebase, and am looking for some advice about some alternatives to simplify or abstract my code.

Let's say I have a thousand subs, each of which has multiple handcrafted SQL queries which are doing complex joins and subselects on 4 or more other tables. It's a nightmare to alter to say the least.

But I would like to avoid the performance hits that Class::DBI and DBIx::Class impose. (I'm assuming DBIx::Class is now more popular/prefered to Class::DBI?). I like that plain DBI is 10-50 times faster.

And after accounting for the complex joins, subselects and where conditions I don't think representing each table as a single class will model very well to my code. I think for the OO approach to fit my existing code, I would need a class that represents the composition of several tables, but I may be overlooking the full capabilities of DBIx::Class etc.

I am looking into using an SQL phrasebook to reduce and separate the SQL from perl, but there are several such modules on CPAN to choose from. Can anyone recommend the best modules that might be appropriate for my situation and make my code better?

I'm preferably looking for the modules that are the most popular, most used and most recent. I looked at these modules:
Class::Phrasebook
Data::Phrasebook::SQL
DBIx::Phrasebook
SQL::Catalog
Thanks!

In reply to What's the best module to stop mixing SQL with Perl? by Withigo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.