I'm looking for a stripped down (so NOT like squeryl, or anything that creates typesafe queries where I have to respecify the table just to get some data) wrapper for jdbc.
i'm using scala 2.9 and postgres.
Anyone have success here?
I'm looking for a stripped down (so NOT like squeryl, or anything that creates typesafe queries where I have to respecify the table just to get some data) wrapper for jdbc.
i'm using scala 2.9 and postgres.
Anyone have success here?
I've used Prequel successfuly in the past. It is just a JDBC wrapper.
There is also Twitter's Querulous, but due to some crippling bugs I found it unusable (leaking connections). It also brings a huge stash of dependencies.
Try scala-jdbc-routine . It feels like Java's JDBC wrappers except the API is Scala-friendly (e.g. Option
instead of null
)
And it only does plain JDBC CRUD. There is no data source management, no forced transaction or session, and no automatic O/R mapping.
© 2022 - 2024 — McMap. All rights reserved.