in reply to CPAN module - to create SQL queries

SQL::Abstract: Generate SQL from Perl data structures. It has a few blind spots in tricky stuff but it does vanilla and lots of extras very well and intuitively out of the box. You might go whole hog and look at a kit like DBIx::Class (which uses SQL::Abstract) or Rose::DB too.

  • Comment on Re: CPAN module - to create SQL queries

Replies are listed 'Best First'.
Re^2: CPAN module - to create SQL queries
by matrixmadhan (Beadle) on Dec 12, 2008 at 07:35 UTC
    Thank you very much for the reply, that seems to be doing most of the work that I would like to do as part of constructing queries.

    Thanks once again, I will look into that.