Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQLite for Scala

Tags:

sqlite

scala

Try googling for "scala" and "sqlite". You don't come up with much. How are people interfacing with SQLite using Scala?

like image 568
qrest Avatar asked Sep 03 '10 21:09

qrest


2 Answers

I didn't like the Java wrappers, so I wrote a new one in Scala. Very alpha. But maybe useful:

http://github.com/srhea/scalaqlite

like image 134
Sean Rhea Avatar answered Oct 13 '22 04:10

Sean Rhea


Since Scala runs on the JVM, it's possible to use Java libraries from Scala. So one option is to use a Java library. There are some listed on the SqliteWrappers page on the SQLite wiki.

like image 7
Richard Fearn Avatar answered Oct 13 '22 04:10

Richard Fearn