sql >> Base de Datos >  >> RDS >> Mysql

Doctrine DBAL setParameter() con valor de matriz

Prueba con

$builder->andWhere('type IN (:string)');
$builder->setParameter('string', array('first','second'), \Doctrine\DBAL\Connection::PARAM_STR_ARRAY);