Top "Slick" questions

Slick acronym for Scala Language-Integrated Connection Kit, is a modern database query and access library for Scala by Lightbend.

Slick 3.0 Insert and then get Auto Increment Value

I have written this code which works perfectly class Items(tag: Tag) extends Table[Item](tag, "ITEMS") { def id = column[…

scala slick slick-3.0
View SQL query in Slick

Is there a way to observe an SQL statement that will be generated by Query? For example, I have this: …

sql scala slick
Logging options for Slick

I'm createing a Play 2.1 app, in which I have decided to use Slick for database interaction. However I can't find …

scala logging playframework playframework-2.0 slick
Scala slick query where in list

I am attempting to learn to use Slick to query MySQL. I have the following type of query working to …

scala typesafe-stack slick
Updating db row scala slick

I have following code which inserts row into table named luczekInfo and function to get data from database. My question …

scala slick
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
Slick 3.0 bulk insert or update (upsert)

what is the correct way to do a bulk insertOrUpdate in Slick 3.0? I am using MySQL where the appropriate query …

mysql sql scala slick typesafe
multiple joins with slick

For joining between two tables is done like (for { (computer, company) <- Computers leftJoin Companies on (_.companyId === _.id) if …

scala slick
How do you update multiple columns using Slick Lifted Embedding?

How do you update multiple columns using Slick Lifted Embedding ? This document doesn't say much. I expected it to be …

scala scala-2.10 slick
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