ScalaQuery is a typesafe API / DSL (domain specific language) built on top of JDBC for accessing relational databases in Scala.
I try to understand some Slick works and what it requires. Here it an example: package models case class Bar(…
scala playframework-2.0 magic-methods scalaquery slickDoes anybody know of a good tutorial or a sample project (github) of using Play framework with SLICK (ScalaQuery)? I …
scala playframework-2.0 scalaqueryI want to query a single row from user based on Id. I have following dummy code case class User( …
scala slick scalaqueryMaybe a silly question. But I have not found an answer so far. So how do you represent the SQL's "…
scala scalaquery slickI want to force slick to create queries like select max(price) from coffees where ... But slick's documentation doesn't help …
scala scalaquery slickI have the following SLICK query to get paged results for a data table with the name field matching some …
scala scalaquery slickI'm trying to filter against an optional date column with Scala Slick 1.0.1. It may be I just don't see it, …
scala slick scalaquery