postgres


License

License

GroupId

GroupId

com.lucidchart
ArtifactId

ArtifactId

relate-postgres_2.10
Last Version

Last Version

2.4.0
Release Date

Release Date

Type

Type

jar
Description

Description

postgres
postgres
Project URL

Project URL

https://github.com/lucidsoftware/relate
Project Organization

Project Organization

com.lucidchart
Source Code Management

Source Code Management

https://github.com/lucidsoftware/relate

Download relate-postgres_2.10

How to add to project

<!-- https://jarcasting.com/artifacts/com.lucidchart/relate-postgres_2.10/ -->
<dependency>
    <groupId>com.lucidchart</groupId>
    <artifactId>relate-postgres_2.10</artifactId>
    <version>2.4.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.lucidchart/relate-postgres_2.10/
implementation 'com.lucidchart:relate-postgres_2.10:2.4.0'
// https://jarcasting.com/artifacts/com.lucidchart/relate-postgres_2.10/
implementation ("com.lucidchart:relate-postgres_2.10:2.4.0")
'com.lucidchart:relate-postgres_2.10:jar:2.4.0'
<dependency org="com.lucidchart" name="relate-postgres_2.10" rev="2.4.0">
  <artifact name="relate-postgres_2.10" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.lucidchart', module='relate-postgres_2.10', version='2.4.0')
)
libraryDependencies += "com.lucidchart" % "relate-postgres_2.10" % "2.4.0"
[com.lucidchart/relate-postgres_2.10 "2.4.0"]

Dependencies

compile (3)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.10.6
com.lucidchart : relate_2.10 jar 2.4.0
org.postgresql : postgresql jar 42.0.0.jre6

Project Modules

There are no modules declared in this project.

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 = "[email protected]"
sql"INSERT INTO users VALUES ($id, $email)".execute()

Continue to Documentation

com.lucidchart

Lucid Software, Inc

Versions

Version
2.4.0
2.3.0
2.2.0-testing
2.2.0
2.1.1
2.1.0
2.0.2