- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
MapperDao ORM library 0.9.1 released
Mon, 2011-11-21, 22:33
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