https://kotlinlang.org logo
#random
Title
j

jdiaz

07/06/2017, 7:38 PM
I've been trying orms/sqlwrappers for 3 hours and i dont like any of them 😞 feelsbadman
x

x80486

07/06/2017, 7:42 PM
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

trevjones

07/06/2017, 7:43 PM
also requery/requery plays nice with kotlin
j

jdiaz

07/06/2017, 7:45 PM
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

x80486

07/06/2017, 7:46 PM
I didn't know about requery; it looks awesome. Time to "play" with it! Thanks @trevjones!
d

dalexander

07/06/2017, 7:46 PM
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

rowell

07/09/2017, 3:53 AM
i've been using ActiveJDBC over the last few weeks (although in a Java project, not Kotlin) - http://javalite.io/activejdbc
p

pascal_le_merrer

07/19/2017, 3:10 PM
@dalexander isn't Exposed a bit immature? It's presented as a protoype...
d

dalexander

07/19/2017, 3:12 PM
My heuristics for library selection may not be the same as yours.
p

pascal_le_merrer

07/19/2017, 3:14 PM
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