Table

object Table
Companion
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case
object EmptyTable extends Table

Specialized representation of an empty table

Specialized representation of an empty table

case
class MultiRowTable(index: SqlColumn => Int, rows: Vector[Array[Any]]) extends Table
case
class OneRowTable(index: SqlColumn => Int, row: Array[Any]) extends Table

Specialized representation of a table with exactly one row

Specialized representation of a table with exactly one row

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def apply(cols: List[SqlColumn], rows: Vector[Array[Any]]): Table
def apply(index: SqlColumn => Int, rows: Vector[Array[Any]]): Table