What are some of the orms worth looking into? Look...
# server
a
What are some of the orms worth looking into? Looking to improve our interfacing with a postgres database on a server side jvm application. Ty!
s
https://github.com/JetBrains/Exposed is pretty good if you're only interested in JVM. I also like SqlDelight https://cashapp.github.io/sqldelight/1.5.4/, but the Postgres support is still experimental although you can get quite far with it. I like that it allows you to write SQL, and I've used it on Linux/MacOs with Kotlin/Native as well.
a
Thanks!!
👍 1
c
r
j
a
Thank you all!
k
If you're not looking for a full blown ORM JDBI is very nice and has very nice Kotlin support. I have used JDBI for three projects at work now and I am very happy with it, but I'm a fan of writing my own SQL.
c
https://github.com/mybatis/mybatis-3 this is also interesting. I used this library in many commercial projects.