ResultSetConsumer

ldbc.sql.ResultSetConsumer
See theResultSetConsumer companion object
trait ResultSetConsumer[F[_], T]

Trait for generating the specified data type from a ResultSet.

Type parameters

F

The effect type

T

Type you want to build with data obtained from ResultSet

Attributes

Companion
object
Source
ResultSetConsumer.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def consume(resultSet: ResultSet[F]): F[T]

Method for generating the specified data type from a ResultSet.

Method for generating the specified data type from a ResultSet.

Value parameters

resultSet

A table of data representing a database result set, which is usually generated by executing a statement that queries the database.

Attributes

Returns

Type you want to build with data obtained from ResultSet

Source
ResultSetConsumer.scala