Top "Slick-3.0" questions

Slick is a modern database query and access library for Scala by Typesafe.

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
How to COUNT(*) in Slick 3.0?

I've been using Slick for quite a while and now I'm migrating from Slick 2.1 to 3.0. Unfortunatelly I got stuck with …

scala slick slick-3.0
How to configure HikariCP for Slick 3.0.0 RC1 on Typesafe conf

I have a Play Application based on the play-scala Typesafe template (Play Scala Seed), and tried to add Slick 3.0.0 to …

postgresql scala playframework-2.3 hikaricp slick-3.0
How to filter on a Option[Boolean] column in slick

I have the following column in my db, thats a Boolean, but also accepts NULL, so true, false, and NULL …

scala slick slick-3.0