Advanced

doobie.util.meta.MetaConstructors.Advanced
object Advanced

Module of constructors for "advanced" JDBC types.

Attributes

Source
meta.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Advanced.type

Members list

Value members

Concrete methods

def array[A >: Null <: AnyRef](elementType: String, schemaH: String, schemaT: String*): Meta[Array[A]]

Attributes

Source
meta.scala
def many[A : TypeName](jdbcTypes: NonEmptyList[JdbcType], schemaTypes: NonEmptyList[String], get: (ResultSet, Int) => A, put: (PreparedStatement, Int, A) => Unit, update: (ResultSet, Int, A) => Unit): Meta[A]

Attributes

Source
meta.scala
def one[A : TypeName](jdbcTypes: JdbcType, schemaTypes: NonEmptyList[String], get: (ResultSet, Int) => A, put: (PreparedStatement, Int, A) => Unit, update: (ResultSet, Int, A) => Unit): Meta[A]

Attributes

Source
meta.scala
def other[A >: Null <: AnyRef : ClassTag](schemaH: String, schemaT: String*): Meta[A]

Attributes

Source
meta.scala