ScalaQuery 0.9.1
I am pleased to announce release 0.9.1 of ScalaQuery, the type-safe database API for Scala.
ScalaQuery is an API / DSL (domain specific language) built on top of JDBC for accessing relational databases in Scala. It is being made available under a liberal BSD-style license and has no dependencies other then the Scala 2.8 library. The current release is ScalaQuery 0.9.1 for Scala 2.8.0 and 2.8.1, with full support for the following database systems: PostgreSQL, MySQL, H2, HSQLDB/HyperSQL, Derby/JavaDB. SQLite support is under development. Accessing other database systems is possible, with a reduced feature set. For more information, see the ScalaQuery web site: http://scalaquery.orgSource code: http://github.com/szeiger/scala-query
Mailing list: http://groups.google.com/group/scalaquery The following changes have been made since release 0.9.0: - Fixed NULL handling of aggregate functions: All except COUNT always return an Option column; - Added aggregate function SUM; - Added methods 'getOr' and 'get' for Column[Option[_]] - Implemented left outer joins and nulls first/last ordering for SQLite - Improved count(*) queries: Sub-queries are avoided in many common cases - Allow Array[Byte] columns on all supported DBMSs - Factored classes out of all driver objects to allow better reuse when building custom drivers based on the existing ones. (https://github.com/szeiger/scala-query/issues/closed#issue/9) - More ScalaDoc comments
