-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathquery.sql.go
More file actions
50 lines (44 loc) · 920 Bytes
/
query.sql.go
File metadata and controls
50 lines (44 loc) · 920 Bytes
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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
// source: query.sql
package querytest
import (
"context"
)
const listBar = `-- name: ListBar :many
-- Lists all bars
SELECT id FROM (
SELECT id FROM bar
) bar
`
// Lists all bars
func (q *Queries) ListBar(ctx context.Context) ([]int32, error) {
rows, err := q.db.QueryContext(ctx, listBar)
if err != nil {
return nil, err
}
defer rows.Close()
var items []int32
for rows.Next() {
var id int32
if err := rows.Scan(&id); err != nil {
return nil, err
}
items = append(items, id)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const removeBar = `-- name: RemoveBar :exec
DELETE FROM bar WHERE id = $1
`
func (q *Queries) RemoveBar(ctx context.Context, id int32) error {
_, err := q.db.ExecContext(ctx, removeBar, id)
return err
}