vote up 2 vote down star
3

I'm would like to use Scala to persist data to a relational database, so what I am looking for are examples of CRUD operations using Scala.

I would like to code on a lower level of abstraction than an ORM like Hibernate/Toplink (read:JDBC), but between us, I would like to see examples of all types.

Thanks folks.

flag

Haha - my answer is accepted due to a lack of viable alternatives. The irony! – oxbow_lakes Sep 8 at 7:14
It's true... <sigh>. But appreciated nonetheless. – Rydell Sep 8 at 13:04

2 Answers

vote up 3 vote down check

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.

link|flag
vote up 1 vote down

A quick google search for "scala database dsl" gave me.

Scala Query

I didn't find any others out there, maybe there is if I kept searching but this one looks ok.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.