$q = $this->createQuery('q')
->where('q.group_id=?', $group_id)
->andWhere('q.content=?', $content)
->execute();
$content に Unicode 文字 (中国語/日本語など) が含まれている場合、次のメッセージが表示されます。
SQLSTATE[HY000]: General error: 1267 Illegal mix of collations
(latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='
以前に同様の問題に遭遇した人はいますか?