Hacker News new | ask | show | jobs
Show HN: Simpler Database Interactions in PHP (github.com)
6 points by erusev 3760 days ago
1 comments

I find it harder to read then plain SQL.

    You do it like this:
    $base->find('user')->whereEqual('is_verified', 1)->orderDesc('id')->read();

    I do it like this:
    $myDb->find('SELECT * FROM user WHERE is_verified=1 ORDER BY id DESC');