This page is no longer maintained — Please continue to the home page at www.scala-lang.org

MapperDao ORM library 0.9.1 released

No replies
Konstantine Kougios
Joined: 2011-04-08,
User offline. Last seen 47 weeks 2 days ago.

The library now supports 5 databases:

oracle
postgresql
mysql
derby
sql server

The mapping scala code is now more readable and easier to maintain

class Person(val name: String, val company: Company, val lives: House)
...
object PersonEntity extends Entity[IntId, Person](classOf[Person]) {
val id = key("id") autogenerated (_.id)
val name = column("name") to (_.name)
val company = manytoone(CompanyEntity) to (_.company)
...

Steadily the library is reaching version 1.0, please feel free to i.e.
state your preference for extra databases that the library should
support or any other features that should be included using the
"Issues" section of the library's home pages:

https://code.google.com/p/mapperdao/

Regards,

Konstantinos Kougios

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland