-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathquery.sql.go
More file actions
67 lines (60 loc) · 1 KB
/
query.sql.go
File metadata and controls
67 lines (60 loc) · 1 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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
// source: query.sql
package querytest
import (
"context"
"encoding/json"
)
const insertFoo = `-- name: InsertFoo :exec
INSERT INTO foo (
a,
b,
c,
d,
e,
f,
g,
h
) VALUES (
?1,
?2,
?3,
?4,
?5,
?6,
?7,
?8
) RETURNING a, json(b), c, json(d), e, json(f), g, json(h)
`
type InsertFooParams struct {
A json.RawMessage
B json.RawMessage
C json.RawMessage
D json.RawMessage
E json.RawMessage
F json.RawMessage
G json.RawMessage
H json.RawMessage
}
func (q *Queries) InsertFoo(ctx context.Context, arg InsertFooParams) error {
_, err := q.db.ExecContext(ctx, insertFoo,
arg.A,
arg.B,
arg.C,
arg.D,
arg.E,
arg.F,
arg.G,
arg.H,
)
return err
}
const selectFoo = `-- name: SelectFoo :exec
SELECT a, json(b), c, json(d), e, json(f), g, json(h) FROM foo
`
func (q *Queries) SelectFoo(ctx context.Context) error {
_, err := q.db.ExecContext(ctx, selectFoo)
return err
}