パラメータとして一連の文字列を含む SQL クエリを作成したいと考えています。
SQL("SELECT * FROM TABLE somecolumn in {someset}")
.on("someset" -> Set("v1', "v2", "v3"))
しかし、上記が生成する SQL クエリは無効です。
play.api.Application$$anon$1: Execution exception [[MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '_binary'??\0sr\0\'scala.collection.immutable.$colon$colon?\\c[???m\0L\0+scala' at line 1]]
Sets/Traversables は anorm のパラメータ型としてサポートされていませんか、それとも別の方法がありますか?