Hello, I found in Prisma a lot of jOOQ and was won...
# orm-help
l
Hello, I found in Prisma a lot of jOOQ and was wondering what exactly do you use jOOQ for in Prisma?
d
We use it to abstract away most our Sql query generation for MySql and Postgres. So instead of writing SQL queries for both that are 99% the same we define them once using jOOQ and just pass in a dialect. jOOQ then spits out the MySql or Postgres queries. At some point later we could then also generate queries for other SQL dialects
l
Alright, thanks!