I've been trying orms/sqlwrappers for 3 hours and ...
# random
j
I've been trying orms/sqlwrappers for 3 hours and i dont like any of them 😞 feelsbadman
x
jdiaz: jOOQ looks pretty good! QueryDSL also. Speedment is somehow "interesting" but I haven't done anything "serious" with it...
It depends on "what you don't like" about them...
t
also requery/requery plays nice with kotlin
j
I just wanted a really easy miniorm for sqlite. But in the end I'll end up using just a plain old text file
x
I didn't know about requery; it looks awesome. Time to "play" with it! Thanks @trevjones!
d
I would probably use https://github.com/JetBrains/Exposed if you haven’t looked at it yet. ORMs are in a weird place where if your data set is too complex then it’s just as easy to use SQL, but if it’s too simple then it’s easier to just use SQL.
👍 2
r
i've been using ActiveJDBC over the last few weeks (although in a Java project, not Kotlin) - http://javalite.io/activejdbc
p
@dalexander isn't Exposed a bit immature? It's presented as a protoype...
d
My heuristics for library selection may not be the same as yours.
p
Probably.
Like Javier Diaz I spent a few hours looking at SQL related libs for Kotlin (on server), and I don't really know what to use