Public GIT repo for ScalaQuery
Saturday, February 21st, 2009The type-safe database query library/DSL for Scala which I introduced in this post is now available in a public GIT repository at GitHub: http://github.com/szeiger/scala-query/tree
I have renamed it to ScalaQuery because SQuery and all other short names I could think of were already used by numerous other projects.
There are several changes compared to the version I used in the introduction:
- The combinator/monad-based query classes are now in their own package
com.novocode.squery.combinator. - The invokers (which execute a typed query through JDBC) of the combinator queries and the simple SQL queries (in
com.novocode.squery.simple) have been unified. - Some minor renaming and refactoring.