sqltyped icon indicating copy to clipboard operation
sqltyped copied to clipboard

q() map (_ get "name") - get value from result

Open steffenlaursen opened this issue 8 years ago • 0 comments

I can't seem to get this to compile.

Code:

  val q = sql("select * from users") // two columns: "name" and "comment"
  println("1 Query: "+q.sql)
  println("Returns: ")  
  q() map (_ get "name") // won't compile

Error message:

value get is not a member of shapeless.::[String with shapeless.labelled.KeyTag[String("name"),String],shapeless.::[String with shapeless.labelled.KeyTag[String("comment"),String],shapeless.HNil]]

image

steffenlaursen avatar May 02 '17 10:05 steffenlaursen