Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

What is the recommended CRUD ORM these days? My requirements are light,just map a hash of key/values to database columns/rows

Replies are listed 'Best First'.
Re: CRUD ORM?
by LanX (Saint) on Oct 21, 2015 at 21:20 UTC
    > My requirements are light, just map a hash of key/values to database columns/rows

    That's such a general question, that the answer can only be "it depends".

    If your requirements are light why don't you just google for Perl CRUD ORM and look at the results?

    Either you find what you need or you'll come back with a better understanding of what you want.

    Cheers Rolf
    (addicted to the Perl Programming Language and ☆☆☆☆ :)
    Je suis Charlie!

Re: CRUD ORM?
by KurtSchwind (Chaplain) on Oct 22, 2015 at 15:16 UTC

    If the requirements are light, why not skip the ORM?

    Perl DBI works really well without an ORM wrapper. Is there some type of complexity that you are trying to abstract?

    --
    “For the Present is the point at which time touches eternity.” - CS Lewis
Re: CRUD ORM?
by 1nickt (Canon) on Oct 23, 2015 at 06:11 UTC

    You might like Tie::Hash::DBD, by our own Tux.

    Use it with SQLite and you'll have a very lightweight solution that will allow you to manipulate your data both in a hash and via the DBI and SQL queries.

    The way forward always starts with a minimal test.