22 Column limit for procedures
问题 How can we overcome the 22 limit when calling procedures with Slick? We currently have: val q3 = sql"""call getStatements(${accountNumber})""".as[Transaction] The problem is that we have to return more than 22 columns and Transaction case class cannot have more than 22 columns since when we do JSONFormat we get an error: [error] E:\IdeaProjects\admin\Transaction.scala:59: No unapply or unapplySeq function found [error] implicit val jsonFormat = Json.format[Transaction] Any suggestions? 回答1: