Antwort:
Du hast also mindestens zwei Fehler gemacht. Das erste ist, was @Alarid gesagt hat:Sie sollten Ihr Array nicht implodieren. Zweitens müssen Sie DoctrineDBALTypes Conversion
verwenden für IN clause
beim Ausführen einer vorbereiteten Anweisung.
Und schließlich geht Ihre Abfrage so:
$stmt = $this->getDoctrine()->getEntityManager()
->getConnection()
->prepare('SELECT t1.id , t1.name , t2.start_date , t2.end_date
FROM table1 t1 , table2 t2
WHERE t1.id = t2.matchId AND t1.id IN (:ids)');
$stmt->bindValue('ids', $idSArray, \Doctrine\DBAL\Connection::PARAM_INT_ARRAY);
$stmt->execute();
Oder alternativ:
$stmt = $this->getDoctrine()->getEntityManager()
->getConnection()
->executeQuery('SELECT t1.id , t1.name , t2.start_date , t2.end_date
FROM table1 t1 , table2 t2
WHERE t1.id = t2.matchId AND t1.id IN (:ids)',
array('ids' => $idSArray),
array('ids' => \Doctrine\DBAL\Connection::PARAM_INT_ARRAY)
)
;