Top "Slick" questions

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

"Hello World" example for Slick 2.0 with MySQL

Is there an example of how to use the Slick 2.0.1 library for Scala to connect to a MySQL database? I …

mysql scala slick
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
Connection pooling in slick?

Is there an easy way to use a DB connection pool with scala's Slick?

scala slick
SELECT DISTINCT in Scala slick

I am using Slick 1, and I have to be able to apply a filter in a query to lookup all …

scala 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
Slick 3 Transactions

I'm confused by the way the slick 3 documentation describes transactions. I have slick 2 code that looks like this: def doSomething(???) = …

scala slick
Insert if not exists in Slick 3.0.0

I'm trying to insert if not exists, I found this post for 1.0.1, 2.0. I found snippet using transactionally in the docs …

scala slick
[SlickException: Read NULL value for column (USERS /670412212).LOGIN_ID]

I am using Slick 1.0.0 with play framework 2.1.0. I am getting the following error when I query my Users table. The …

scala playframework-2.0 slick typesafe-stack
How do you print the select statements for the following Slick queries?

I would like to find out which of the following queries would be the most efficient for getting a row …

scala slick
scala slick query return value

I am rather new at Scala and have been struggling with slick and can't see how to return the results …

scala slick