rfranco / relate

Performant database access in Scala

Home Page:http://lucidsoftware.github.io/relate/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Relate

http://lucidsoftware.github.io/relate/

Build Status Maven Version Join the chat at https://gitter.im/lucidsoftware/relate

Relate is a lightweight, blazingly fast database access layer for Scala that abstracts the idiosyncricies of the JDBC while keeping complete control over the SQL.

Install

libraryDependencies += "com.lucidchart" %% "relate" % "<version>"

Examples

val ids = Seq(1, 2, 3)
sql"SELECT email FROM users WHERE id in ($ids)".asMap { row =>
  row.long("id") -> row.string("email")
}
val id = 4
val email = "github@lucidchart.com"
sql"INSERT INTO users VALUES ($id, $email)".execute()

Continue to Documentation

About

Performant database access in Scala

http://lucidsoftware.github.io/relate/

License:Apache License 2.0


Languages

Language:Scala 99.7%Language:Makefile 0.3%