Skip to main content

All Questions

Tagged with
2 votes
2 answers
1k views

How to configure transactor in doobie?

Recently I started learning doobie but I couldn't create a hikari transactor without error. I'm using mysql, Intellij-Idea. This is my build.sbt file name := "doobie" version := "0.1" //scalaVersion ...
NzDush's user avatar
  • 175
0 votes
1 answer
720 views

How do I create a Doobie Meta instance for MySQL using Play JSON?

How do I implement basic serialization/deserialization at the query level using Doobie, MySQL, and Play JSON?
JPotts's user avatar
  • 302
4 votes
1 answer
3k views

Doobie with Hikari setup

I want to get the hikari transactor setup to act just like the standard transactor val xa = HikariTransactor.newHikariTransactor[IO]( "com.mysql.jdbc.Driver", JdbcUrl, Username, ...
Matthew Fontana's user avatar