Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any halfway decent jdbc wrappers for Scala?

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?

like image 651
dave Avatar asked Feb 03 '12 18:02

dave


People also ask

What database to use with Scala?

Slick. Slick is currently the most popular (at least in terms of GitHub stars) database library for Scala and is developed by Lightbend.

What is a JDBC wrapper?

A JDBC wrapper extracts data from a database via JDBC. Syntax of the CREATE WRAPPER JDBC statement¶

What is Scala database?

Scala is a high level language that combines functional and object oriented programming with high performance runtimes.


1 Answers

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.

like image 67
Yann Ramin Avatar answered Sep 21 '22 17:09

Yann Ramin