-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathquery.sql.go
More file actions
83 lines (71 loc) · 1.52 KB
/
query.sql.go
File metadata and controls
83 lines (71 loc) · 1.52 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
// source: query.sql
package db
import (
"context"
)
const testDelete = `-- name: TestDelete :exec
DELETE FROM USERS WHERE ID = ?
`
func (q *Queries) TestDelete(ctx context.Context, id string) error {
_, err := q.db.ExecContext(ctx, testDelete, id)
return err
}
const testInsert = `-- name: TestInsert :exec
INSERT INTO USERS (
ID, USERNAME
) VALUES (
?, ?
)
`
type TestInsertParams struct {
ID string
Username string
}
func (q *Queries) TestInsert(ctx context.Context, arg TestInsertParams) error {
_, err := q.db.ExecContext(ctx, testInsert, arg.ID, arg.Username)
return err
}
const testSelect = `-- name: TestSelect :many
SELECT
ID, USERNAME
FROM
USERS
`
func (q *Queries) TestSelect(ctx context.Context) ([]User, error) {
rows, err := q.db.QueryContext(ctx, testSelect)
if err != nil {
return nil, err
}
defer rows.Close()
var items []User
for rows.Next() {
var i User
if err := rows.Scan(&i.ID, &i.Username); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const testUpdate = `-- name: TestUpdate :exec
UPDATE USERS
SET USERNAME = ?
WHERE ID = ?
`
type TestUpdateParams struct {
Username string
ID string
}
func (q *Queries) TestUpdate(ctx context.Context, arg TestUpdateParams) error {
_, err := q.db.ExecContext(ctx, testUpdate, arg.Username, arg.ID)
return err
}