forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.sql.go
More file actions
55 lines (45 loc) · 1.13 KB
/
query.sql.go
File metadata and controls
55 lines (45 loc) · 1.13 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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
// source: query.sql
package querytest
import (
"context"
"database/sql"
)
const insertDefaultValues = `-- name: InsertDefaultValues :exec
INSERT INTO foo DEFAULT VALUES
`
func (q *Queries) InsertDefaultValues(ctx context.Context) error {
_, err := q.db.ExecContext(ctx, insertDefaultValues)
return err
}
const insertMultipleValues = `-- name: InsertMultipleValues :exec
INSERT INTO foo (a, b) VALUES (?, ?), (?, ?)
`
type InsertMultipleValuesParams struct {
A sql.NullString
B sql.NullInt64
A_2 sql.NullString
B_2 sql.NullInt64
}
func (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMultipleValuesParams) error {
_, err := q.db.ExecContext(ctx, insertMultipleValues,
arg.A,
arg.B,
arg.A_2,
arg.B_2,
)
return err
}
const insertValues = `-- name: InsertValues :exec
INSERT INTO foo (a, b) VALUES (?, ?)
`
type InsertValuesParams struct {
A sql.NullString
B sql.NullInt64
}
func (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {
_, err := q.db.ExecContext(ctx, insertValues, arg.A, arg.B)
return err
}