Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Função auxiliar fetchAll usando PDO


editar: como o Coronel indicou, aparentemente isso (não mais?) funciona com LIMIT cláusulas.

Se você estiver usando consultas simples / não se incomodar com o tipo:
function fetchAll(){
   $args = func_get_args();
   $query = array_shift($args);//'SELECT * FROM users WHERE status=? LIMIT ?,?'
   //you'll need a reference to your PDO instance $pdo somewhere....
   $stmt = $pdo->prepare($query);
   $stmt->execute($args);
   return $stmt->fetchAll();
}