Hacker News new | ask | show | jobs
by randallsquared 6114 days ago
If you're using PDO, it's usually going to be easier to do:

    $stmt = $dbh->prepare( 'SELECT foo, bar from fooBar where foo = ?' );
    $stmt->execute($foo);
The only case where using named parameters is really useful is when there are so many parameters you're reduced to counting question marks.