Basic

doobie.util.meta.Meta.Basic
object Basic

Module of constructors for "basic" JDBC types.

Attributes

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

Members list

Value members

Concrete methods

def many[A](jdbcTarget: NonEmptyList[JdbcType], jdbcSource: NonEmptyList[JdbcType], jdbcSourceSecondary: List[JdbcType], get: (ResultSet, Int) => A, put: (PreparedStatement, Int, A) => Unit, update: (ResultSet, Int, A) => Unit)(using evidence$3: TypeName[A]): Meta[A]

Attributes

Source
meta.scala
def one[A](jdbcType: JdbcType, jdbcSourceSecondary: List[JdbcType], get: (ResultSet, Int) => A, put: (PreparedStatement, Int, A) => Unit, update: (ResultSet, Int, A) => Unit)(using evidence$4: TypeName[A]): Meta[A]

Attributes

Source
meta.scala
def oneObject[A](jdbcType: JdbcType, jdbcSourceSecondary: List[JdbcType], clazz: Class[A])(using evidence$5: TypeName[A]): Meta[A]

Attributes

Source
meta.scala