Whilst there are Scala JDBC solutions out there, the lack of documentation made me stick with Spring DAO.
Spring's DAO abstraction layer is an excellent and lightweight layer on top of JDBC which allows you to forget about the boilerplate code handling Connections, Statements etc. Put the template-based mechanism together with implicit conversions and first-order functions and it's even better and fits well into Scala. As well as this (Java) example of using stored procedures (useful for creating/updating data), here is an example of it using scala to read data:
import java.util.{List => JList}
val jdbcTemplate = new SimpleJdbcTemplate(dataSource)
val sql = "select name, age from my_obj"
val os: JList[MyObj] = jdbcTemplate.query(sql, new ParametrizedRowMapper[MyObj] {
def mapRow(rs: ResultSet, row: Int) : MyObj = {
//convert a row of a result set to a MyObj
MyObj(rs.getString("name"), rs.getInt("age"))
}
}
Obviously this can be improved upon by using implicit conversions to convert a Function[ResultSet,Int,MyObj] into the ParametrizedRowMapper and the jcl collection conversions also.
Spring DAO can be used outside the Spring container if needed (i.e. just used as a library) and it's extremely reliable due to the massive usage of Spring in Java land. The main drawback is that it doesn't make any use of the ability of a scala library to define a DSL.