scalasql.core.Queryable
See theQueryable companion trait
object Queryable
Attributes
Members list
Type members
Classlikes
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
object Row extends QueryableRow
Attributes
A Queryable that represents a part of a single database row. Queryable.Rows can be nested within other Queryables, but Queryables in general cannot. e.g.
A Queryable that represents a part of a single database row. Queryable.Rows can be nested within other Queryables, but Queryables in general cannot. e.g.
-
Select[Int]
is valid becauseSelect[Q]
takes aQueryable.Row[Q]
, and there is aQueryable.Row[Int]
available -
Select[Select[Int]]
is invalid because although there is aQueryable[Select[Q]]
available, there is noQueryable.Row[Select[Q]]
, asSelect[Q]
returns multiple rows
Attributes
- Companion
- object
- Supertypes
- Known subtypes
-
In this article