blob: 7604fe25c09cfbc0bf077ccab78271d1736693be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
package model
import (
"errors"
)
type RecipesElement struct {
Id int64 // TODO change to string
Title string
}
type Recipes []RecipesElement
func (r *Recipes) Read() error {
if len(*r) != 0 {
return errors.New("Recipes has to contain zero elements for .Read()")
}
query := `SELECT id, title FROM recipes`
rows, err := db.Query(query)
if err != nil {
return err
}
defer rows.Close()
for rows.Next() {
element := RecipesElement{}
err = rows.Scan(&element.Id, &element.Title)
if err != nil {
return err
}
*r = append(*r, element)
}
return nil
}
func RecipesTestData() Recipes {
return []RecipesElement{
{
Id: 1,
Title: "Pancakes",
},
{
Id: 2,
Title: "Burger",
},
}
}
|