package postgresql
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- postgresql
- PGJson
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- implicit object JsObjectParameterMetaData extends ParameterMetaData[JsObject]
- Definition Classes
- PGJson
- implicit object JsValueParameterMetaData extends ParameterMetaData[JsValue]
- Definition Classes
- PGJson
- implicit val UUIDToSql: ToSql[UUID]
Instance of
ToSql
to support PostgreSQL UUID parameter - def asJson[T](value: T)(implicit w: Writes[T]): ParameterValue
- value
the value to be passed as a JSON parameter
- w
the Play writes to be used to serialized the value as JSON
import play.api.libs.json._ import anorm._, postgresql._ case class Foo(bar: String) implicit val w: Writes[Foo] = Json.writes[Foo] val value = Foo("lorem") def foo(implicit con: java.sql.Connection) = SQL"INSERT INTO test(id, json) VALUES(${"bar"}, ${asJson(value)})". executeUpdate()
- Definition Classes
- PGJson
- def fromJson[T](implicit r: Reads[T]): Column[T]
- r
the Play reader to be used from the selected JSONB value
import play.api.libs.json.Reads import anorm._, postgresql._ case class Foo(bar: String) def foo(implicit con: java.sql.Connection, r: Reads[Foo]): Foo = SQL"SELECT json FROM test". as(SqlParser.scalar(fromJson[Foo]).single)
- Definition Classes
- PGJson
- implicit val jsObjectColumn: Column[JsObject]
import play.api.libs.json.JsObject import anorm._, postgresql._ def foo(implicit con: java.sql.Connection) = SQL"SELECT json FROM test".as(SqlParser.scalar[JsObject].single)
- Definition Classes
- PGJson
- implicit val jsValueColumn: Column[JsValue]
import play.api.libs.json.JsValue import anorm._, postgresql._ def foo(implicit con: java.sql.Connection) = SQL"SELECT json FROM test".as(SqlParser.scalar[JsValue].single)
- Definition Classes
- PGJson
- implicit def jsValueToStatement[J <: JsValue]: ToStatement[J]
Allows to pass a
JsValue
as parameter to be stored asPGobject
.Allows to pass a
JsValue
as parameter to be stored asPGobject
.- Definition Classes
- PGJson