Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sorm/sorm

A functional boilerplate-free Scala ORM
https://github.com/sorm/sorm

Last synced: about 1 month ago
JSON representation

A functional boilerplate-free Scala ORM

Awesome Lists containing this project

README

        

# SORM

SORM is an object-relational mapping framework designed to eliminate boilerplate and maximize productivity. It is absolutely abstracted from relational side, automatically creating database tables, emitting queries, inserting, updating and deleting records. This all functionality is presented to the user with a simple API around standard Scala's case classes.

For more info, tutorials and documentation please visit the [official site](http://sorm-framework.org).

## Supported databases

* MySQL
* PostgreSQL
* H2
* HSQLDB
* Oracle (experimental)

## Supported Scala versions

2.10, 2.11

## Maven

SORM is distributed in Maven Central, here's a dependency to the latest release version:


org.sorm-framework
sorm
0.3.21

## SBT

libraryDependencies += "org.sorm-framework" % "sorm" % "0.3.21"

---

[![Build Status](https://travis-ci.org/sorm/sorm.png?branch=master)](https://travis-ci.org/sorm/sorm)