Elem

ldbc.dsl.codec.Decoder.Elem
See theElem companion object
trait Elem[A]

Trait to get the DataType that matches the Scala type information from the ResultSet.

Type parameters

A

Scala types that match SQL DataType

Attributes

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

Members list

Value members

Abstract methods

def decode(resultSet: ResultSet, columnLabel: String): A

Method to retrieve data from a ResultSet using column names.

Method to retrieve data from a ResultSet using column names.

Value parameters

columnLabel

Column name of the data to be retrieved from the ResultSet.

resultSet

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

Attributes

Source
Decoder.scala
def decode(resultSet: ResultSet, index: Int): A

Method to retrieve data from a ResultSet using an Index number.

Method to retrieve data from a ResultSet using an Index number.

Value parameters

index

Index number of the data to be retrieved from the ResultSet.

resultSet

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

Attributes

Source
Decoder.scala