Top "Scalaquery" questions

ScalaQuery is a typesafe API / DSL (domain specific language) built on top of JDBC for accessing relational databases in Scala.

scala slick method I can not understand so far

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 slick
Play framework + SLICK (Scalaquery) tutorial

Does anybody know of a good tutorial or a sample project (github) of using Play framework with SLICK (ScalaQuery)? I …

scala playframework-2.0 scalaquery
Select single row based on Id in Slick

I want to query a single row from user based on Id. I have following dummy code case class User( …

scala slick scalaquery
How to use SQL "LIKE" operator in SLICK

Maybe a silly question. But I have not found an answer so far. So how do you represent the SQL's "…

scala scalaquery slick
How to make aggregations with slick

I want to force slick to create queries like select max(price) from coffees where ... But slick's documentation doesn't help …

scala scalaquery slick
How to specify SLICK Query sortBy column from runtime parameter?

I have the following SLICK query to get paged results for a data table with the name field matching some …

scala scalaquery slick
Slick and filtering by Option columns

I'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