page banner
avatar
'Example of using ZIO Test' post illustration
Example of using ZIO Test

This article will help you with writing zio tests.

avatar
'How to create RESTful API with Scala, Play, Silhouette and Slick' post illustration
How to create RESTful API with Scala, Play, Silhouette and Slick

The given article can help you out with creating a RESTful API with Play Framework, Slick ORM, PostgreSQL and Silhouette JWT authentication/authorization

avatar
'Pagination with Scala and Slick: How to Properly Build Select Queries' post illustration
Pagination with Scala and Slick: How to Properly Build Select Queries

Implementing pagination with Slick is a common task in Scala projects. But it’s rarely obvious how to build efficient queries on the server to get the necessary entities with additional data. Read our article to find a solution.

avatar
'Building REST service with Scala' post illustration
Building REST service with Scala

Enterprise application might be developed using a variety of architectural styles. And REST is one of the most powerful of them. It allows us to build simple, scalable, highly productive APIs with independent components on the basis of widespread standards like HTTP, MIME etc, engaging their true potential.

Let's discuss how to create a lightweight, but full-featured RESTful service from scratch.

avatar
'Table existence check using Slick' post illustration
Table existence check using Slick

I'm using Slick library in my project and need to ensure that all required MySQL tables are created on application start.

avatar
'How to update entire database record using Slick' post illustration
How to update entire database record using Slick

Slick documentation says how to perform update operation for specific column, but doesn't contain any examples of updating entire record.

Below is tiny example of how to do that.