-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathquery.sql.go
More file actions
64 lines (58 loc) · 1.25 KB
/
query.sql.go
File metadata and controls
64 lines (58 loc) · 1.25 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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
// source: query.sql
package db
import (
"context"
)
const example = `-- name: Example :many
select 1 where not ?1
`
func (q *Queries) Example(ctx context.Context, argname interface{}) ([]int64, error) {
rows, err := q.db.QueryContext(ctx, example, argname)
if err != nil {
return nil, err
}
defer rows.Close()
var items []int64
for rows.Next() {
var column_1 int64
if err := rows.Scan(&column_1); err != nil {
return nil, err
}
items = append(items, column_1)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const example2 = `-- name: Example2 :many
select 1 where cast(?1 as boolean)
`
func (q *Queries) Example2(ctx context.Context, argname bool) ([]int64, error) {
rows, err := q.db.QueryContext(ctx, example2, argname)
if err != nil {
return nil, err
}
defer rows.Close()
var items []int64
for rows.Next() {
var column_1 int64
if err := rows.Scan(&column_1); err != nil {
return nil, err
}
items = append(items, column_1)
}
if err := rows.Close(); err != nil {
return nil, err
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}