implicit conversion of RESULTSET for queries
问题 I'm using Scala 2.10 and have problems with Slick (plain queries, java.sql.ResultSet). If I write queries like Q.query[String, ResultSet](query).list(rs.getString("id")) eclipse will tell me could not find implicit value for parameter rconv: scala.slick.jdbc.GetResult[java.sql.ResultSet] My most important source for this issue ( http://slick.typesafe.com/doc/0.11.2/sql.html ) does not help. How do I write these implicit conversions? And is there any other, familar way of representing