Slick Flashcards

1
Q

Ist Slick ein ORM (Object-Relational-Mapper)?

A

Nein

Slick ist ein functional-relational mapper

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Was bringt uns Slick?

A

Wir können Queries in Scala Schreibweise definieren

class Accounts extends Table[...]("accounts") {}

val accounts = TableQuery[Accounts]
val query = accounts.filter(_.id > 145)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Welches Prinzip verfolgt Slick?

A

Query-by-API

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly