summaryrefslogtreecommitdiff
path: root/model/recipes.go
blob: bdd1cc11a49c2ae7d3432b0972aa98a84c3d73a5 (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
package model

import (
	"errors"
)

type RecipesElement struct {
	Id          int64
	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
}